#custom-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    font-family: sans-serif;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
#custom-cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}
#custom-cookie-banner button {
    margin-left: 10px;
    padding: 5px 12px;
    cursor: pointer;
    background: #8DAC99;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-weight: bold;
}
@media (max-width: 600px) {
    #custom-cookie-banner {
        font-size: 14px;
        padding: 12px;
    }
    #custom-cookie-banner button {
        padding: 5px 10px;
        font-size: 14px;
    }
}
