/**
 * Theme Name:     LoveTravel Child
 * Author:         Albany Data
 * Template:       lovetravel
 * Text Domain:	   lovetravel-child
 * Description:    Wonderful theme for your Business.
 */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.hotel-tile {
    border: 1px solid #ddd;
    padding: 16px;
    border-radius: 6px;
    background: #fff;
}

.hotel-tile h4 {
    margin: 0 0 10px;
}

.hotel-tile .price {
    font-size: 22px;
    margin-bottom: 4px;
}

.hotel-tile .nightly {
    color: #666;
    margin-bottom: 8px;
}

.hotel-tile ul {
    padding-left: 18px;
    font-size: 14px;
}

.hotel-tile button {
    margin-top: 12px;
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}

.hotel-tile.selected {
    border: 2px solid #0073aa;
    background: #f0f8ff;
}

.hotel-tile.selected .select-room {
    background: #0073aa;
    color: #fff;
}



