/* Banner Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1f2937;
    /* Dark gray */
    color: #f3f4f6;
    /* Light gray text */
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-family: 'Lato', sans-serif;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-align: center;
    max-width: 900px;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.1s;
}

.btn-accept {
    background-color: #16a34a;
    /* Green */
    color: white;
}

.btn-accept:hover {
    background-color: #15803d;
}

.btn-decline {
    background-color: #ef4444;
    /* Red */
    color: white;
}

.btn-decline:hover {
    background-color: #b91c1c;
}

@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 5%;
    }

    .cookie-text {
        margin-bottom: 0;
        text-align: left;
        margin-right: 20px;
    }
}

@media print {
    .cookie-banner {
        display: none !important;
    }
}