@font-face {
    font-family: 'GoodVibes';
    src: url('../fonts/GoodVibesPro.woff2') format('woff2'),
         url('../fonts/GoodVibesPro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Cookie sáv – középre igazítva, lekerekítve, animációval */
.tm-consent {
    width: 600px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 30px !important;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.75) !important;
    color: #ff8c32 !important;
    text-align: center !important;
    padding: 20px !important;
    animation: fadeSlide 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* A teljes belső tartalom középre */
.tm-consent * {
    text-align: center !important;
    justify-content: center !important;
}

/* A gombok konténere */
.tm-consent .uk-margin,
.tm-consent .uk-button-group {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

/* Maguk a gombok */
.tm-consent .uk-button {
    margin: 6px !important;
    display: inline-flex !important;
    justify-content: center !important;
}

/* Fade + slide animáció */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translate(-50%, 25px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Mobilbarát verzió */
@media (max-width: 640px) {
    .tm-consent {
        width: calc(100% - 30px) !important;
        left: 15px !important;
        transform: none !important;
    }
}  
