.cookie-banner-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9001;
}

.cookie-banner {
    background-color: #eff6ef;
    color: #090e09;
    font-family: "Nunito";
    font-size: 14px;
    font-weight: 600;
    padding: 5px 20px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.cookie-message {
    margin-right: 20px;
}

.cookie-btn {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 13px 15px;
    cursor: pointer;
    font-size: 14px;
    font-family: "Nunito";
    font-weight: 700;
    white-space: nowrap; /* Prevents text from wrapping */
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.cookie-btn:hover {
    background-color: #267629;
}

.cookie-link {
    color: #178cd5;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-banner-wrapper {
    animation: slideUp 0.5s ease-out;
}