#fcg-cookie-banner {
    position: fixed;
    z-index: 999999999;
    display: none;
    background: var(--fcg-bg);
    color: var(--fcg-text);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
    font-family: Arial, sans-serif;
    padding: 22px;
    max-width: 760px;
}

#fcg-cookie-banner.fcg-position-bottom {
    left: 20px;
    right: 20px;
    bottom: 20px;
    margin: auto;
}

#fcg-cookie-banner.fcg-position-top {
    left: 20px;
    right: 20px;
    top: 20px;
    margin: auto;
}

#fcg-cookie-banner.fcg-position-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
}

#fcg-cookie-banner h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

#fcg-cookie-banner p {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.45;
}

.fcg-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.fcg-btn {
    border: 0;
    border-radius: 8px;
    padding: 10px 15px;
    font-weight: 700;
    cursor: pointer;
}

.fcg-btn-primary {
    background: var(--fcg-primary, #111827);
    color: #fff;
}

.fcg-btn-secondary {
    background: #e5e7eb;
    color: #111;
}

.fcg-btn-link {
    background: var(--fcg-accent, #2563eb);
    color: #fff;
}

.fcg-privacy-link {
    font-size: 13px;
    color: var(--fcg-accent, #2563eb);
}

#fcg-cookie-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9999999999;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

#fcg-cookie-modal-box {
    background: #fff;
    color: #111;
    padding: 24px;
    border-radius: 14px;
    width: 92%;
    max-width: 540px;
}

.fcg-pref-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.fcg-pref-row small {
    display: block;
    color: #555;
    margin-top: 4px;
}

.fcg-small {
    font-size: 13px;
}

#fcg-cookie-banner,
#fcg-cookie-banner *,
#fcg-cookie-modal,
#fcg-cookie-modal * {
    pointer-events: auto !important;
}

#fcg-cookie-banner {
    z-index: 2147483647 !important;
    isolation: isolate;
}

#fcg-cookie-modal {
    z-index: 2147483647 !important;
}

#fcg-cookie-banner {
    position: fixed !important;
    z-index: 2147483647 !important;
    transform: translateZ(0);
}

#fcg-cookie-banner * {
    position: relative;
    z-index: 2147483647 !important;
}