/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi/
Description: Child Theme voor Divi
Author: Jouw Naam
Author URI: http://www.stichting-goedegebuuren.nl
Template: Divi
Version: 1.0.0
*/

/* Start hier met custom CSS */
/* Prijstabel styling */
.hb-rates-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Header styling */
.hb-rates-table thead th {
    background: #f7f7f7;
    padding: 12px 15px;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

/* Rijen styling */
.hb-rates-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.hb-rates-table tbody tr:hover {
    background-color: #f9f9f9;
}

/* Cel styling */
.hb-rates-table td {
    padding: 12px 15px;
    vertical-align: middle;
}

/* Seizoen kolom */
.hb-rates-table td:first-child {
    font-weight: 600;
    color: #333;
}

/* Datum kolommen */
.hb-rate-date {
    color: #666;
}

/* Prijs kolom */
.hb-rate-price {
    font-weight: 500;
    color: #2c5282;
}

/* Subtabel voor meerdere prijzen */
.hb-rate-sub-prices {
    margin: 0 !important;
}

.hb-rate-sub-prices td {
    padding: 4px 0 !important;
    color: #2c5282;
}

/* Responsive aanpassingen */
@media screen and (max-width: 768px) {
    .hb-rates-table {
        font-size: 14px;
    }
    
    .hb-rates-table td,
    .hb-rates-table th {
        padding: 8px 10px;
    }
}

/* Specifieke seizoen kleuren */
.hb-tr-season-1 td:first-child { /* Hoogseizoen */
    color: #e53e3e;
}

.hb-tr-season-14 td:first-child { /* Kerstvakantie */
    color: #2b6cb0;
}

/* Euro teken styling */
.hb-rate-price {
    white-space: nowrap;
}

.hb-rate-price::first-letter {
    font-size: 0.9em;
    vertical-align: baseline;
}