#consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
#consent-overlay.show {
    display: flex;
}

#consent-banner {
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    font-family: sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 90%;
}
#consent-banner button {
    margin-right: 10px;
}
#consent-settings {
    display: none;
    margin-top: 15px;
}
#consent-settings label {
    display: block;
    margin: 5px 0;
}
#consent-settings .consent-label {
    font-weight: bold;
}
#consent-settings .consent-desc {
    display: block;
    font-size: 0.9em;
    margin-left: 24px;
    color: #555;
}
#consent-manage-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: none;
    z-index: 999;
}
#consent-manage-btn.show {
    display: block;
}
