/* Basic Styling for Travel & Hospitality Manager */

.thm-hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.thm-hotel-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background: #fff;
}

.hotel-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.hotel-meta {
    margin-bottom: 20px;
    padding: 10px;
    background: #f9f9f9;
    border-left: 4px solid #0073aa;
}

.hotel-facilities ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hotel-facilities li {
    background: #eee;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.9em;
}

.hotel-rooms .room-item {
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.room-item h4 {
    margin-top: 0;
}
