/* Edit Profile Modal - Minimalistic Design *//* Edit Profile Modal - Minimalistic Design */
.edit-profile-modal {
    max-width: 560px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--background);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 0;
}/* Modal Header */

/* Modal Header */
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--background);
    z-index: 10;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.form-section-group {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 20px 0;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-label i {
    font-size: 13px;
    color: var(--secondary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    color: var(--primary);
    font-family: inherit;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.form-value-readonly {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    color: var(--secondary);
}

.form-hint {
    margin: 6px 0 0 0;
    font-size: 13px;
    color: var(--secondary);
}/* Avatar Upload Section */

/* Avatar Upload Section */
.avatar-section {
    display: flex;
    justify-content: center;
}

.avatar-upload-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.avatar-preview-container {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-upload-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.2s ease;
    cursor: pointer;
    color: white;
}

.avatar-preview-container:hover .avatar-upload-overlay {
    opacity: 1;
}

.avatar-upload-overlay i {
    font-size: 24px;
}

.avatar-upload-overlay span {
    font-size: 13px;
    font-weight: 600;
}/* Form Actions */

/* Form Actions */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.btn-cancel,
.btn-save {
    flex: 1;
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
}

.btn-cancel {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.btn-save {
    background: var(--primary);
    color: var(--background);
}

.btn-save:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.btn-save:active {
    transform: translateY(0);
}

.btn-save:disabled,
.btn-save.disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}/* Responsive Design */

/* Responsive Design */
@media (max-width: 600px) {
    .edit-profile-modal {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 20px 16px 16px;
    }

    .edit-profile-form {
        padding: 20px 16px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-cancel,
    .btn-save {
        width: 100%;
    }
}/* Legacy Support - Keep for backward compatibility */
