.conference-page h3.thematikes {
    color: #3c3630;
}

   .hotel-table-container {
        width: 100%;
        margin: 25px 0;
    }

    .hotel-scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 8px;
        padding: 9px 15px;
        background: #eef5fb;
        border: 1px solid #d7e5f2;
        border-radius: 8px;
        color: #486581;
        font-family: "Segoe UI", Arial, sans-serif;
        font-size: 13px;
        font-weight: 600;
    }

    .hotel-scroll-arrow {
        font-size: 18px;
        font-weight: 700;
    }

    .hotel-table-wrapper {
        width: 100%;
        overflow-x: auto;
        border-radius: 14px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
        background: #fff;
    }

    .hotel-table {
        width: 100%;
        min-width: 1500px;
        border-collapse: separate;
        border-spacing: 0;
        font-family: "Segoe UI", Arial, sans-serif;
        font-size: 14px;
        color: #263238;
    }

    .hotel-table thead th {
        background: linear-gradient(135deg, #243b53, #486581);
        color: #fff;
        padding: 17px 14px;
        text-align: left;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }

    .hotel-table thead th:first-child {
        border-top-left-radius: 14px;
    }

    .hotel-table thead th:last-child {
        border-top-right-radius: 14px;
    }

    .hotel-table tbody td {
        padding: 16px 14px;
        vertical-align: top;
        border-bottom: 1px solid #e8edf2;
        line-height: 1.55;
    }

    .hotel-table tbody tr:nth-child(even) {
        background: #f8fafc;
    }

    .hotel-table tbody tr:hover {
        background: #eef5fb;
    }

    .hotel-name {
        font-size: 16px;
        font-weight: 700;
        color: #17324d;
        min-width: 150px;
    }

    .stars {
        display: inline-block;
        background: #f4b942;
        color: #fff;
        padding: 5px 9px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 12px;
        white-space: nowrap;
    }

    .offer {
        min-width: 260px;
    }

    .price {
        font-size: 16px;
        font-weight: 700;
        color: #147d64;
    }

    .code {
        display: inline-block;
        background: #e8f1fb;
        color: #245b8f;
        padding: 3px 7px;
        border-radius: 5px;
        font-family: monospace;
        font-weight: 700;
    }

    .contact {
        white-space: nowrap;
    }

    .hotel-table a {
        color: #1769aa;
        text-decoration: none;
        font-weight: 600;
    }

    .hotel-table a:hover {
        color: #0d47a1;
        text-decoration: underline;
    }

    .notes {
        min-width: 260px;
        color: #52606d;
        font-size: 13px;
    }

    @media (max-width: 768px) {
        .hotel-scroll-hint {
            font-size: 12px;
        }

        .hotel-table-wrapper {
            border-radius: 10px;
        }

        .hotel-table {
            font-size: 13px;
        }
    }