#cookie-consent-banner {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 820px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 10px;
    z-index: 99999;
    font-family: system-ui, -apple-system, sans-serif;
}

#cookie-consent-banner h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-align: center;
}

#cookie-consent-banner p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
    color: #333;
}

#cookie-consent-banner .cookie-consent-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 12px;
}

#cookie-consent-banner label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* --- Contentor dos Botões --- */
#cookie-consent-banner .cookie-consent-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
}

#cookie-consent-banner .cookie-consent-buttons button {
    flex: 1;
    height: 40px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

/* --- Cores dos Botões --- */
#cookie-consent-btn-reject-all {
    background-color: #f1f1f1;
    color: #444;
    border: 1px solid #dcdcdc;
}

#cookie-consent-btn-accept-some {
    background-color: #2269a7;
    color: #ffffff;
}

#cookie-consent-btn-accept-all {
    background-color: #07aa17;
    color: #ffffff;
}

#cookie-consent-banner .cookie-consent-buttons button:hover {
    filter: brightness(90%);
}

/* Responsividade para ecrãs muito pequenos */
@media (max-width: 400px) {
    #cookie-consent-banner .cookie-consent-buttons {
        flex-direction: column;
    }
}