﻿.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cookie-p {
    color: white !important; 
}

    .cookie-consent-content p {
        margin: 0;
        flex: 1;
    }

    .cookie-consent-content a {
        color: #4a90e2;
        text-decoration: underline;
    }

#acceptCookies {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
}
.btn-cookie {
    background-color: #0d6efd !important;
}
