/* .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    right: 20px;
    background: #d6d4d4;
    color: #4a4a4a;
    padding: 20px;
    border-radius: 0;
    z-index: 9999;
    display: none;
    border-top: 1px solid #ddd;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner button {
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    margin-left: 10px;
}

.btn-accept {
    background: green;
    color: white;
}

.btn-reject {
    background: red;
    color: white;
} */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1000px; /* Optional */
    background: #ffffff;
    color: #4a4a4a;
    padding: 10px 20px;
    border-radius: 12px;
    z-index: 9999;
    display: none;
    border-top: 4px solid #0082c5;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie-banner button {
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    margin-left: 10px;
}