.hotel-item {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hotel-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.hotel-item-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.hotel-item-checkbox {
    margin-right: 15px;
    margin-top: 5px;
    transform: scale(1.2);
}

.hotel-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
    flex-grow: 1;
}

.hotel-star-rating {
    color: #FFD700;
    font-size: 16px;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.hotel-star-rating span {
    color: #666;
    font-size: 14px;
    margin-left: 5px;
}

.hotel-item-content {
    display: flex;
    flex-wrap: wrap;
}

.hotel-item-image {
    width: 120px;
    height: 120px;
    margin-right: 20px;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.hotel-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-item:hover .hotel-item-image img {
    transform: scale(1.05);
}

.hotel-item-description {
    flex: 1;
    min-width: 200px;
    color: #555;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hotel-item-header {
        flex-direction: column;
    }
    
    .hotel-item-checkbox {
        margin-bottom: 10px;
    }
    
    .hotel-star-rating {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .hotel-item-content {
        flex-direction: column;
    }
    
    .hotel-item-image {
        width: 100%;
        height: auto;
        margin-right: 0;
    }
}
