.cookie-banner{
    z-index:99;
}
.cookie-banner {
    background-color: #ff0000;
    color: #cccccc;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 80%;
    max-width: 500px;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in-out;
    font-family: Arial, sans-serif;
}

.cookie-banner.bottom {
   max-width:100%;
   left:0;
   bottom:0;
   top:unset;
   transform:none;
   width:100%;
   border-radius:0;
   position: fixed;
}

.cookie-banner.top {
   max-width:100%;
   left:0;
   bottom:unset;
   top:0;
   transform:none;
   width:100%;
   border-radius:0;
   position: fixed;
}
.cookie-banner.edit-mode {
    pointer-events: none; /* Disables interactions */
    opacity: 0.5; /* Visual indication of being disabled */
}
.cookie-banner p {
    margin: 0;
    font-size: 16px;
}

.cookie-banner button {
    background-color: #0177c1;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s, color 0.3s;
}

.cookie-banner button:hover {
    background-color: #4c803b;
    color: #ffffff;
}

.cookie-banner button {
    font-size: 14px;
    border:none !important;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
