#json-editor {
    width: 100%;
    height: 300px;
    margin-bottom: 10px;
    font-family: monospace;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#resume-content {
    background-color: white;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 5px;
}

#editor-controls {
    text-align: center;
    margin-top: 20px;
}

#advanced-editor {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.resume-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avatar-container {
    margin-right: 20px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #3498db;
}

.name-title {
    flex-grow: 1;
}

.name-title h1 {
    margin: 0;
    text-align: left;
    border-bottom: none; /* 移除下划线 */
}

.name-title p {
    margin: 5px 0 0;
    color: #7f8c8d;
}

.avatar-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #777;
    cursor: pointer;
}

#template-selector {
    margin-right: 10px;
    padding: 5px;
    font-size: 16px;
}