/* Süti-elfogadó sáv (Eht. 155. § (4) + GDPR + NAIH gyakorlat) */

#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: #ffffff;
    border-top: 2px solid #2f65a5;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 18px 24px;
    display: none;
}

#cookie-consent-banner.is-visible {
    display: block;
}

#cookie-consent-banner .ccb-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #333;
}

#cookie-consent-banner .ccb-text a {
    color: #2f65a5;
    text-decoration: underline;
}

#cookie-consent-banner .ccb-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

#cookie-consent-banner .ccb-buttons button {
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #2f65a5;
    cursor: pointer;
    font-family: inherit;
}

/* "Elutasítás" és "Elfogadás" egyenrangú vizuálisan — NAIH dark-pattern tilalom */
#cookie-consent-banner .ccb-btn-reject,
#cookie-consent-banner .ccb-btn-accept-all {
    background: #2f65a5;
    color: #ffffff;
}

#cookie-consent-banner .ccb-btn-reject:hover,
#cookie-consent-banner .ccb-btn-accept-all:hover {
    background: #234d80;
}

#cookie-consent-banner .ccb-btn-settings {
    background: #ffffff;
    color: #2f65a5;
}

#cookie-consent-banner .ccb-btn-settings:hover {
    background: #f0f0f0;
}

/* Beállítások panel — alapból elrejtve, a "Beállítások" gomb nyitja */
#cookie-consent-banner .ccb-settings {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

#cookie-consent-banner .ccb-settings.is-open {
    display: block;
}

#cookie-consent-banner .ccb-category {
    margin-bottom: 12px;
    padding: 10px 12px;
    background: #f7f9fc;
    border-radius: 4px;
}

#cookie-consent-banner .ccb-category label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin: 0;
    font-weight: bold;
    font-size: 14px;
    color: #2f65a5;
}

#cookie-consent-banner .ccb-category input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

#cookie-consent-banner .ccb-category input[type="checkbox"]:disabled {
    opacity: 0.6;
}

#cookie-consent-banner .ccb-category .ccb-category-desc {
    display: block;
    font-weight: normal;
    color: #555;
    font-size: 13px;
    margin-top: 4px;
    margin-left: 24px;
}

#cookie-consent-banner .ccb-settings-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 12px;
}

@media (max-width: 600px) {
    #cookie-consent-banner {
        padding: 14px 16px;
    }
    #cookie-consent-banner .ccb-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    #cookie-consent-banner .ccb-buttons button {
        width: 100%;
    }
}

/* Süti-tájékoztató táblák — az ÁSZF Adatkezelés-fejezetében (aszf.html.twig).
   A #aszf wrapper saját padding-jét a base.css adja. */
#aszf table {
    width: 100%;
    margin: 12px 0 24px;
    border: 1px solid #7C372D;
    border-collapse: collapse;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

#aszf th,
#aszf td {
    padding: 6px 10px;
    text-align: left;
    border: 1px solid #b89c93;
    vertical-align: top;
}

#aszf th {
    background: #7C372D;
    color: #ffffff;
    font-weight: bold;
    border-color: #7C372D;
}

#aszf tbody tr:nth-child(even) {
    background: #f5efe9;
}

#aszf table code {
    font-size: 11px;
    background: rgba(124, 55, 45, 0.08);
    padding: 1px 4px;
    border-radius: 3px;
}
