/* Solo fallback mínimo para cuando no hay valores guardados */
:root {
    --uc-primary: #2271b1;
    --uc-primary-hover: #1d5f9e;
    --uc-secondary: #646970;
    --uc-text: #1d2327;
    --uc-bg: #ffffff;
    --uc-border: #dcdcde;
    --uc-shadow: 0 4px 15px rgba(0,0,0,0.15);

    --uc-banner-bg: #ffffff;
    --uc-text-main: #1d2327;
    --uc-secondary-btn: #646970;
    --uc-save-btn: #2271b1;
    --uc-overlay: rgba(0,0,0,0.6);
}

/* El resto del CSS original (sin repetir :root) */
.uc-banner-wrapper {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    right: 20px !important;
    z-index: 999999 !important;
    background: var(--uc-banner-bg) !important;
    color: var(--uc-text-main) !important;
    box-shadow: var(--uc-shadow) !important;
    border-radius: 8px !important;
    border: 1px solid var(--uc-border) !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
    padding: 20px !important;
    display: block !important;
}

.uc-banner-wrapper:not(.uc-hidden) {
    display: block !important;
}

.uc-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.uc-content h2 {
    margin: 0 0 10px 0;
    font-size: 1.0rem;
    color: var(--uc-text-main);
}

.uc-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--uc-text-main);
}

.uc-content a {
    color: var(--uc-primary);
    text-decoration: underline;
}

.uc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.uc-btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.uc-btn-primary {
    background-color: var(--uc-primary);
    color: #fff;
}

.uc-btn-primary:hover {
    background-color: var(--uc-primary-hover);
}

.uc-btn-secondary {
    background-color: var(--uc-secondary-btn) !important;
    color: #fff !important;
    border: 1px solid var(--uc-secondary-btn) !important;
}

.uc-btn-secondary:hover {
    opacity: 0.9;
}

#uc-btn-save {
    background-color: var(--uc-save-btn) !important;
    color: #fff !important;
}

.uc-hidden {
    display: none !important;
}

#uc-settings-panel {
    border-top: 1px solid var(--uc-border);
    padding-top: 15px;
    margin-top: 5px;
}

.uc-revocation-wrapper {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    right: auto !important;
    z-index: 999999 !important;
}

.uc-revocation-trigger {
    background: var(--uc-primary);
    color: #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.uc-revocation-trigger:hover {
    transform: scale(1.1);
}

.uc-revocation-text {
    font-size: 10px;
    margin-top: 4px;
    line-height: 1;
}

.uc-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
    font-size: small !important;
}

.uc-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.uc-hidden-initial {
    display: none !important;
}

.uc-banner-hidden {
    display: none !important;
}

#uc-cookie-modal {
    background: var(--uc-overlay) !important;
}

@media (min-width: 768px) {
    .uc-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .uc-banner-wrapper {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
}
.unlitogd-blocked-placeholder {
    background: #f8f8f8;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #555;
}

.unlitogd-blocked-placeholder a {
    color: var(--uc-primary);
    text-decoration: underline;
    font-weight: bold;
}