#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0f172a;
    color: #fff;
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default, shown by JS */
    border-top: 1px solid #334155;
    font-family: 'Greycliff CF', sans-serif;
}

#cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

#cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #cbd5e1;
    flex: 1;
}

#cookie-banner a {
    color: #44BB67;
    text-decoration: underline;
}

#cookie-banner a:hover {
    color: #5ed682;
}

#cookie-banner .cookie-buttons {
    display: flex;
    gap: 10px;
}

#cookie-banner .btn-accept {
    background-color: #44BB67;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

#cookie-banner .btn-accept:hover {
    background-color: #369c53;
}

@media (max-width: 768px) {
    #cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    #cookie-banner .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
