/* Profile Sidebar */
.profile-sidebar {
    text-align: center;
}

.profile-sidebar__user {
    padding: 10px 0;
}

.profile-sidebar__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0078d7;
    color: #fff;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.profile-sidebar__user h4 {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
    position: relative;
}

.profile-sidebar__user h4::after {
    display: none;
}

.profile-sidebar__user .text-muted {
    font-size: 13px;
}

.profile-sidebar hr {
    margin: 15px 0;
    opacity: 0.15;
}

.profile-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.profile-sidebar__nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 12px;
    color: #333;
    text-decoration: none;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}

.profile-sidebar__nav a:hover {
    background: #f0f4f8;
    color: #0078d7;
}

.profile-sidebar__nav a.active {
    background: #0078d7;
    color: #fff;
}

.profile-sidebar__nav a i {
    font-size: 18px;
    width: 22px;
    text-align: center;
}

/* Booking Table Card */
.booking-table-card {
    overflow: hidden;
}

.booking-table-card .table {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
}

.booking-table-card .table thead th {
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #666;
    white-space: nowrap;
}

.booking-table-card .table tbody td {
    padding: 14px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.booking-table-card .table tbody tr:last-child td {
    border-bottom: none;
}

.booking-table-card .table .badge {
    font-weight: 600;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
}

/* Prices Table Card */
.prices-card {
    overflow: hidden;
}

.prices-card .table {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
}

.prices-card .table thead th {
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 13px;
    color: #333;
    white-space: nowrap;
    vertical-align: middle;
}

.prices-card__cartype {
    font-weight: 400;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.prices-card .table tbody td {
    padding: 10px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.prices-card .table tbody td:first-child {
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.prices-card .table tbody tr:hover {
    background: #f8fbff;
}

.prices-card .table tbody tr:last-child td {
    border-bottom: none;
}

.prices-card__extra-row {
    background: #f8f9fa;
}

.prices-card__extra-row td {
    border-top: 2px solid #e9ecef !important;
    color: #333 !important;
}
