#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 2px solid #95C11C;
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

#cookie-banner p {
    padding: 0;
    font-size: 16px;
    color: #333;
    max-width: 650px;
    margin: 0 auto 15px auto;
}

#cookie-banner a {
    color: #007bff;
    text-decoration: none;
}

#cookie-banner a:hover {
    text-decoration: underline;
}

#cookie-banner .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

#cookie-banner button {
    padding: 12px 25px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#accept-cookies {
    background-color: #95C11C;
    color: #fff;
}

#accept-cookies:hover {
    background-color: #7da214;
}

#decline-cookies {
    background-color: #ccc;
    color: #333;
}

#decline-cookies:hover {
    background-color: #999;
}

/* Slide up animation */
#cookie-banner.hidden {
    transform: translateY(100%);
}

/* Media Query for Mobile */
@media (max-width: 600px) {
    #cookie-banner {
        padding: 15px;
        text-align: left;
    }

    #cookie-banner p {
        font-size: 14px;
        max-width: 100%;
        margin: 0;
    }

    #cookie-banner .buttons {
        flex-direction: column;
        align-items: stretch;
    }

    #cookie-banner button {
        width: 100%;
        margin-bottom: 10px;
        font-size: 16px;
    }

    #cookie-banner button:last-child {
        margin-bottom: 0;
    }
}
