/* Dashboard Styles */

.dashboard__sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.dashboard__user__info {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.user__avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard__nav {
    margin-top: 20px;
}

.dashboard__nav__link {
    display: block;
    padding: 12px 15px;
    margin-bottom: 8px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.dashboard__nav__link:hover,
.dashboard__nav__link.active {
    background: #f5f5f5;
    color: #000;
}

.dashboard__nav__link i {
    margin-right: 10px;
}

.dashboard__stat__card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.dashboard__stat__card .icon {
    margin-bottom: 15px;
}

.dashboard__stat__card .card-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.dashboard__stat__card .card-text {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.booking__card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.booking__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.booking__image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.booking__image__placeholder {
    width: 100%;
    height: 150px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.booking__image__placeholder i {
    font-size: 48px;
    color: #ccc;
}

.booking__title {
    font-size: 20px;
    margin-bottom: 10px;
}

.booking__meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.booking__meta i {
    margin-right: 5px;
}

.booking__price {
    color: #000;
    font-weight: bold;
}

.status-draft {
    background: #ffc107;
    color: #000;
}

.status-confirmed {
    background: #28a745;
    color: #fff;
}

.status-paid {
    background: #17a2b8;
    color: #fff;
}

.status-checked_in {
    background: #007bff;
    color: #fff;
}

.status-checked_out {
    background: #6c757d;
    color: #fff;
}

.status-cancelled {
    background: #dc3545;
    color: #fff;
}

.product__card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.product__image {
    position: relative;
    overflow: hidden;
}

.product__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.product__card:hover .product__image img {
    transform: scale(1.1);
}

.product__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product__card:hover .product__overlay {
    opacity: 1;
}

.product__content {
    padding: 20px;
}

.product__title {
    font-size: 20px;
    margin-bottom: 10px;
}

.product__description {
    font-size: 14px;
    margin-bottom: 15px;
}

.product__price {
    color: #000;
    font-weight: bold;
}

.bookings__filter {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter__tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter__tab {
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.filter__tab:hover,
.filter__tab.active {
    background: #000;
    color: #fff;
}

.date__card {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.date__label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.date__value {
    color: #000;
}

.sidebar__card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.summary__item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.summary__item:last-child {
    border-bottom: none;
}

.sidebar__actions {
    margin-top: 20px;
}

.booking__form__wrapper {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product__preview {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}

.cancel__confirmation {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

@media (max-width: 768px) {
    .dashboard__sidebar {
        margin-bottom: 30px;
        position: relative;
        top: 0;
    }
    
    .filter__tabs {
        flex-direction: column;
    }
    
    .filter__tab {
        text-align: center;
    }
}

