/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: none; /* Hidden by default, shown by JS */
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

#cookie-consent-banner p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #e0e0e0;
}

#cookie-consent-banner a {
    color: #fff;
    text-decoration: underline;
    border-bottom: none;
    font-style: normal;
    opacity: 1;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #000000;
}

.cookie-btn.accept:hover {
    background-color: #e0e0e0;
}

.cookie-btn.decline {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.cookie-btn.decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    #cookie-consent-banner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        padding: 20px 40px;
    }

    #cookie-consent-banner p {
        margin: 0;
        margin-right: 20px;
        max-width: 70%;
    }
}
