
#bioforce-consent-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: 360px;
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    padding: 1.5rem;
    font-family: "Roboto", "Segoe UI", sans-serif;
    z-index: 9999;
}

#bioforce-consent-banner h2 {
    font-size: 1.1rem;
    margin: 0 0 0.75rem;
    color: #1a1a1a;
}

#bioforce-consent-banner p {
    font-size: 0.9rem;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.bioforce-consent-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.bioforce-consent-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.bioforce-consent-option label {
    flex: 1;
    font-weight: 500;
}

.bioforce-toggle {
    appearance: none;
    width: 42px;
    height: 22px;
    border-radius: 999px;
    background: #d0d5dd;
    position: relative;
    cursor: pointer;
    transition: background 0.2s ease;
    border: none;
}

.bioforce-toggle::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.bioforce-toggle:checked {
    background: #ff6c42;
}

.bioforce-toggle:checked::after {
    transform: translateX(20px);
}

.bioforce-consent-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.bioforce-consent-actions button {
    font-size: 0.85rem;
    border-radius: 999px;
    border: none;
    padding: 0.5rem 1.1rem;
    cursor: pointer;
}

.bioforce-consent-actions .primary {
    background: #ff6c42;
    color: #fff;
}

.bioforce-consent-actions .secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 640px) {
    #bioforce-consent-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}
