/* Cookie Banner Styles - GABA */
#gaba-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #00254E;
    color: #ffffff;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Roboto', sans-serif;
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
}

#gaba-cookie-banner.show {
    transform: translateY(0);
}

#gaba-cookie-banner p {
    margin: 0 20px 0 0;
    font-size: 14px;
    line-height: 1.4;
}

#gaba-cookie-banner a {
    color: #ff6900;
    text-decoration: underline;
}

#gaba-cookie-banner .btn-accept {
    background-color: #ff6900;
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.2s;
}

#gaba-cookie-banner .btn-accept:hover {
    background-color: #e65c00;
}

@media (max-width: 768px) {
    #gaba-cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    #gaba-cookie-banner p {
        margin: 0 0 15px 0;
    }
}
