
/* Customer Dashboard CSS */
.account-nav-tab {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}
.account-nav-tab.active {
    border-bottom: 2px solid var(--primary-color);
}
.dashboard-container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.countdown-timer {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    background: rgba(128, 0, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin: 10px 0;
}
/* Improved Booking Card */
.booking-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}
.booking-card:hover {
    transform: translateY(-5px);
}
.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.booking-actions {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}
.countdown-timer {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    border: 1px dashed var(--primary-color);
    text-align: center;
}
/* Review Stars */
.stars-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}
.stars-input input { display: none; }
.stars-input label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
}
.stars-input input:checked ~ label,
.stars-input label:hover,
.stars-input label:hover ~ label {
    color: #ffd700;
}

.profile-pic-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
}
.profile-pic-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
