*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: var(--color-dark-blue);
    font-family: "Syne", sans-serif;
    cursor:  pointer;
}

:root {
    --colorBg: #FFFBDE;
    --color-light-blue: #91C8E4;
    --color-medium-blue: #749BC2;
    --color-dark-blue: #4682A9;
    --mainFont1: "Syne", sans-serif;
    --mainFont2: "Imperial Script", cursive;
}

body{
    font-family: 'Arial', sans-serif;
    background-color: var(--colorBg);
}

.reservedMain{
    width: 100%;
    height: 100vh;
    margin-top: 120px;
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

.zemo2{
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
}

.hotelTypeBtn{
    border: 1px solid var(--color-dark-blue);
    padding: 10px 15px;
    background-color: transparent;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hotelTypeBtn:hover,
.hotelTypeBtn.active {
    background-color: var(--color-dark-blue);
    color: white;
    border-radius: 25px;
    border-radius: 25px;
}

.dajavshnili {
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sataurebi {
    width: 100%;
    display: flex;
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
    height: 50px;
    align-items: center;
}

.sataurebi > div {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10px;
    height: 100%;
    border-right: 1px solid #e9ecef;
}

.sataurebi > div:last-child {
    border-right: none;
}

.hotel-header { width: 12%; }
.room-header { width: 15%; }
.customer-header { width: 18%; }
.status-header { width: 8%; }
.checkin-header { width: 10%; }
.checkout-header { width: 10%; }
.price-header { width: 12%; }
.actions-header { width: 15%; }

.booking-row {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #e9ecef;
    min-height: 80px;
    align-items: center;
    transition: background-color 0.2s ease;
}

.booking-row:hover {
    background-color: #f8f9fa;
}

.booking-row > div {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    height: 100%;
    border-right: 1px solid #e9ecef;
}

.booking-row > div:last-child {
    border-right: none;
}

.hotel-cell { 
    width: 12%; 
    flex-direction: column;
    text-align: center;
}

.hotel-image {
    width: 50px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 5px;
}

.hotel-name {
    font-weight: 600;
    color: #333;
    font-size: 13px;
    line-height: 1.2;
}

.hotel-location {
    color: #666;
    font-size: 11px;
}

.room-cell { 
    width: 15%; 
    flex-direction: column;
    align-items: flex-start;
}

.room-image {
    width: 50px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 5px;
}

.room-name {
    font-weight: 600;
    color: #333;
    font-size: 13px;
    margin-bottom: 2px;
}

.room-price {
    color: #666;
    font-size: 12px;
    font-weight: 500;
}

.customer-cell { 
    width: 18%; 
    flex-direction: column;
    align-items: flex-start;
}

.customer-name {
    font-weight: 600;
    color: #333;
    font-size: 13px;
    margin-bottom: 3px;
}

.customer-phone {
    color: #666;
    font-size: 12px;
}

.status-cell { 
    width: 8%; 
    justify-content: center;
}

.status-badge {
    background-color: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.checkin-cell, .checkout-cell { 
    width: 10%; 
    justify-content: center;
    flex-direction: column;
}

.date-text {
    font-weight: 500;
    color: #333;
    font-size: 12px;
}

.price-cell { 
    width: 12%; 
    justify-content: center;
}

.total-price {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.actions-cell { 
    width: 15%; 
    justify-content: center;
}

.cancel-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cancel-btn:hover {
    background-color: #c82333;
}

@media (max-width: 768px) {
    .sataurebi {
        font-size: 12px;
        height: 45px;
    }
    
    .booking-row {
        min-height: 70px;
    }
    
    .hotel-image, .room-image {
        width: 40px;
        height: 30px;
    }
    
    .cancel-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

@media (max-width: 1024px) {
    .hotel-header { width: 14%; }
    .room-header { width: 16%; }
    .customer-header { width: 18%; }
    .status-header { width: 8%; }
    .checkin-header, 
    .checkout-header { width: 12%; }
    .price-header { width: 12%; }
    .actions-header { width: 8%; }

    .hotel-cell { width: 14%; }
    .room-cell { width: 16%; }
    .customer-cell { width: 18%; }
    .status-cell { width: 8%; }
    .checkin-cell,
    .checkout-cell { width: 12%; }
    .price-cell { width: 12%; }
    .actions-cell { width: 8%; }

    .cancel-btn {
        padding: 6px 10px;
    }
}

@media (max-width: 768px) {
    .sataurebi {
        font-size: 11px;
        height: 40px;
    }

    .hotel-header { width: 15%; }
    .room-header { width: 18%; }
    .customer-header { width: 20%; }
    .status-header { width: 7%; }
    .checkin-header,
    .checkout-header { width: 10%; }
    .price-header { width: 10%; }
    .actions-header { width: 10%; }

    .hotel-cell { width: 15%; }
    .room-cell { width: 18%; }
    .customer-cell { width: 20%; }
    .status-cell { width: 7%; }
    .checkin-cell,
    .checkout-cell { width: 10%; }
    .price-cell { width: 10%; }
    .actions-cell { width: 10%; }

    .hotel-image, 
    .room-image {
        width: 35px;
        height: 25px;
    }

    .hotel-name,
    .room-name,
    .customer-name {
        font-size: 12px;
    }

    .hotel-location,
    .room-price,
    .customer-phone,
    .date-text {
        font-size: 11px;
    }

    .total-price {
        font-size: 13px;
    }

    .cancel-btn {
        padding: 5px 8px;
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .dajavshnili {
        overflow-x: auto;
    }

    .sataurebi,
    .booking-row {
        width: 800px; 
    }

    .sataurebi > div,
    .booking-row > div {
        white-space: nowrap;
    }

    .hotel-header { width: 120px; }
    .room-header { width: 140px; }
    .customer-header { width: 160px; }
    .status-header { width: 80px; }
    .checkin-header,
    .checkout-header { width: 100px; }
    .price-header { width: 100px; }
    .actions-header { width: 120px; }

    .hotel-cell { width: 120px; }
    .room-cell { width: 140px; }
    .customer-cell { width: 160px; }
    .status-cell { width: 80px; }
    .checkin-cell,
    .checkout-cell { width: 100px; }
    .price-cell { width: 100px; }
    .actions-cell { width: 120px; }
}


@media (max-width: 480px) {
    .sataurebi {
        height: 35px;
        font-size: 10px;
    }

    .booking-row {
        min-height: 60px;
    }

    .hotel-image,
    .room-image {
        width: 30px;
        height: 20px;
    }

    .cancel-btn {
        padding: 4px 6px;
        font-size: 9px;
    }
}