.hotel-overzicht-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
}

.hotel-filters {
    margin-bottom: 30px;
    text-align: center;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 4px;
}

.filter-btn {
    background: #333;
    border: none;
    padding: 10px 20px;
    margin: 0 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

.filter-btn:hover {
    background: #444;
}

.filter-btn.active {
    background: #e31e24;
    color: white;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.hotel-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #ddd;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-card h3 {
    margin: 15px;
    font-size: 1.4em;
    color: #1a1a1a;
    font-weight: 600;
}

.hotel-card .location {
    margin: 0 15px 15px;
    color: #666;
    font-size: 0.9em;
}

.hotel-card .tags {
    margin: 0 15px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.hotel-card .tag {
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8em;
    color: #333;
    font-weight: 500;
}

.hotel-card .website-link {
    display: block;
    margin: 15px;
    padding: 12px;
    background: #e31e24;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

.hotel-card .website-link:hover {
    background: #c41820;
}

/* Hotel Detail Page Styles */
.hotel-detail-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hotel-header {
    text-align: center;
    margin-bottom: 40px;
}

.hotel-main-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.hotel-header h1 {
    font-size: 2.5em;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.hotel-location {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.hotel-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.hotel-tags h3 {
    font-size: 1.4em;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.tags-container .tag {
    background: #f5f5f5;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 1em;
    color: #333;
    font-weight: 500;
}

.hotel-website {
    text-align: center;
    margin-top: 30px;
}

.website-button {
    display: inline-block;
    padding: 15px 30px;
    background: #e31e24;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    transition: background 0.3s ease;
}

.website-button:hover {
    background: #c41820;
}

.hotel-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Hide filtered cards */
.hotel-card.hidden {
    display: none;
}

/* Admin styles */
.wrap .form-table th {
    width: 150px;
}

.wrap .form-table input[type="text"],
.wrap .form-table input[type="url"] {
    width: 100%;
    max-width: 400px;
}

.wrap .button {
    margin-right: 10px;
}

.wrap .button-small {
    padding: 0 10px;
    height: 30px;
    line-height: 28px;
} 