﻿/* Gombsor elrendezése */
.cookie-consent-box .actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

/* Alap gombstílus – FELIRAT LÁTSZÓDJON */
.cookie-consent-box .btn {
    padding: 10px 16px;
    min-width: 140px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.1;
    text-align: center;
    border: 1px solid #d0d7e2;
    background: #ffffff;
    color: #111111 !important; /* ← ez biztosítja, hogy ne legyen „láthatatlan” */
    box-shadow: 0 2px 6px rgba(0,0,0,.06);
    cursor: pointer;
}

    /* Elfogadás kiemelve */
    .cookie-consent-box .btn.accept {
        background: #2563eb;
        border-color: #2563eb;
        color: #ffffff !important;
    }

    /* Visszautasítás semleges */
    .cookie-consent-box .btn.decline {
        background: #ffffff;
        border-color: #d0d7e2;
        color: #111111 !important;
    }

    .cookie-consent-box .btn:hover {
        box-shadow: 0 4px 10px rgba(0,0,0,.12);
        filter: saturate(1.05);
    }
