.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #A31C20; /* Mélyvörös háttér */
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-family: 'Century Gothic', sans-serif;
    animation: fadeIn 0.6s ease;
    gap: 10px;
}

.cookie-popup p {
    margin: 0;
    font-size: 14px;
    flex: 1 1 auto;
}

.cookie-popup a {
    color: #FFD700; /* Aranysárga, jól olvasható a piros háttéren */
    text-decoration: underline;
}

.cookie-popup button {
    background-color: #FDAA10; /* Narancssárga a gombhoz */
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.cookie-popup button:hover {
    background-color: #cc8800; /* Kissé sötétebb hover */
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 🌐 Mobilbarát stílus */
@media (max-width: 600px) {
    .cookie-popup {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        font-size: 16px;
    }

    .cookie-popup p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .cookie-popup button {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

.cookie-popup button:last-child {
    background-color: #555; /* Sötétszürke */
}

.cookie-popup button:last-child:hover {
    background-color: #333;
}

