.consent-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f9f9f9;
    border-top: 1px solid #ccc;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #333;
    animation: slideUp 0.5s ease-out;
}

.consent-banner a {
    color: #4c6baf;
    text-decoration: none;
    font-weight: bold;
}

.consent-banner .accept-cookies {
    background-color: #4c6baf;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}

.decline-cookies {
    background-color: transparent;
    color: black;
    border: solid #4c6baf;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}



@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.consent-banner p {
    margin: 0;
    padding-right: 10px;
}

@media screen and (max-width: 600px) {
    .consent-banner {
        flex-direction: column;
        text-align: center;
    }

    .consent-banner button {
        margin-top: 10px;
        width: 100%;
    }

    .consent-banner p {
        padding-right: 0;
    }

}

/* } */