.profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

/* Sidebar */
.user-card {
    text-align: center;
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.user-card h3 {
    margin-bottom: 0.25rem;
}

.user-card p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.profile-nav {
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.profile-nav a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.2s;
}

.profile-nav a:last-child {
    border-bottom: none;
}

.profile-nav a:hover,
.profile-nav a.active {
    background-color: #f8f9fa;
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

.profile-nav a i {
    width: 24px;
    color: var(--light-text);
}

.profile-nav a:hover i,
.profile-nav a.active i {
    color: var(--primary-color);
}

/* Content */
.profile-content h1 {
    margin-bottom: 1.5rem;
}

.booking-item {
    margin-bottom: 1.5rem;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.booking-id {
    font-weight: 600;
    color: var(--light-text);
}

.booking-body {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.service-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.booking-info {
    flex-grow: 1;
}

.booking-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.booking-info p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0.25rem;
}

.booking-info i {
    width: 20px;
    text-align: center;
    margin-right: 0.25rem;
}

.booking-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.booking-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        margin-bottom: 2rem;
    }
}