.cookie-banner {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: #f1f1f1;
    text-align: center;
    box-shadow: 0 0 10px rgba(155, 155, 155, 0.5);
    z-index: 1000;
    width: fit-content;
    border-radius: 0 5px 5px 0;
    display: none;
}

.cookie-banner p {
    font-size: 1.2rem;
}
.cookie-banner .close_cookie_banner {
    position: absolute;
    top: 0;
    right: 5px;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    color: #000;
    opacity: .5;
    font-weight: 800;

}

.cookie-banner .refuse-cookies-btn {
    background-color: #f44336;
    color: white;
    padding: 6px 12px;
    border: none;
    cursor: pointer;
    font-size: 1rem;

}

.accept-cookies-btn {
    background-color: #4CAF50;
    color: white;
    padding: 6px 12px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
