/* Süti-hozzájárulás banner (Google Consent Mode v2) */

#cookieConsentBanner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #ffffff;
    border-top: 3px solid #1E5594;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, .18);
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
}

#cookieConsentBanner .ccb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
}

#cookieConsentBanner .ccb-title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #1E5594;
}

#cookieConsentBanner .ccb-text {
    margin-bottom: 6px;
}

/* Az adatvédelmi link külön sorban, hogy ne folyjon bele a bekezdésbe. */
#cookieConsentBanner .ccb-policy {
    margin-bottom: 12px;
}

#cookieConsentBanner .ccb-text a,
#cookieConsentBanner .ccb-policy a {
    color: #1E5594;
    text-decoration: underline;
}

#cookieConsentBanner .ccb-details {
    margin: 12px 0;
    padding: 12px;
    background: #f5f7fa;
    border-radius: 4px;
    max-height: 40vh;
    overflow-y: auto;
}

#cookieConsentBanner .ccb-category {
    margin-bottom: 12px;
}

#cookieConsentBanner .ccb-category:last-child {
    margin-bottom: 0;
}

#cookieConsentBanner .ccb-category label {
    display: block;
    margin-bottom: 2px;
    cursor: pointer;
    font-weight: normal;
}

#cookieConsentBanner .ccb-category input[disabled] {
    cursor: not-allowed;
}

#cookieConsentBanner .ccb-category-text {
    margin-left: 22px;
    font-size: 13px;
    color: #666666;
}

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

#cookieConsentBanner .ccb-btn {
    padding: 9px 18px;
    border-radius: 3px;
    border: 1px solid transparent;
    font-size: 14px;
    cursor: pointer;
    background: none;
}

#cookieConsentBanner .ccb-btn-primary {
    background: #1E5594;
    border-color: #1E5594;
    color: #ffffff;
    font-weight: bold;
}

#cookieConsentBanner .ccb-btn-primary:hover {
    background: #174374;
}

#cookieConsentBanner .ccb-btn-secondary {
    background: #ffffff;
    border-color: #b9c2cc;
    color: #333333;
}

#cookieConsentBanner .ccb-btn-secondary:hover {
    background: #eef1f5;
}

#cookieConsentBanner .ccb-btn-link {
    color: #1E5594;
    text-decoration: underline;
    padding-left: 4px;
    padding-right: 4px;
    margin-right: auto;
}

@media (max-width: 600px) {
    #cookieConsentBanner .ccb-inner {
        padding: 14px 15px;
    }

    #cookieConsentBanner .ccb-buttons {
        justify-content: stretch;
    }

    #cookieConsentBanner .ccb-btn {
        flex: 1 1 100%;
        text-align: center;
    }

    #cookieConsentBanner .ccb-btn-link {
        margin-right: 0;
        order: 10;
    }
}
