#custom-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0A3D91;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
}

#custom-cookie-banner .cookie-message {
    flex: 1 1 60%;
    font-size: 14px;
}

#custom-cookie-banner .cookie-buttons {
    flex: 1 1 35%;
    text-align: right;
}

#custom-cookie-banner button {
    background-color: #25D366;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

#custom-cookie-banner button:hover {
    background-color: #1ebe5d;
}

/* Mobile adjustments */
@media (max-width:768px) {
    #custom-cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    #custom-cookie-banner .cookie-buttons {
        text-align: center;
        margin-top: 10px;
    }
    #custom-cookie-banner button {
        margin-left: 5px;
        margin-top: 5px;
    }
}
