/* css/profile.css */
#route-profile {
    background-color: #f5f5f5;
    overflow-y: auto;
}

#route-profile.active {
    display: flex;
    flex-direction: column;
}

#route-profile .dashboard-header {
    flex-shrink: 0;
}

#route-profile .profile-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 48px;
    padding-bottom: 48px;
}

.profile-container {
    width: 100%;
    max-width: 600px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.profile-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-header h1 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.profile-header p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.profile-photo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.profile-photo-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    border: 1px solid #eaeaea;
}

.profile-photo-text h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.profile-photo-text p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-form-row {
    display: flex;
    gap: 16px;
}

.profile-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-form-group label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.profile-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #e5e5e5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: var(--text-primary);
    transition: all 0.2s;
    outline: none;
}

.profile-btn:hover {
    background: #f0f0f0;
}

.profile-btn-danger {
    color: #ff4d4f;
    border-color: #ff4d4f;
}

.profile-btn-danger:hover {
    background: #fff1f0;
    border-color: #ff4d4f;
}
