/* SoAI Website - Site analytics styles [soai.to/public/assets/css/analytics.css] | Copyright (c) 2024-2026 SoAI. All rights reserved. */

.analytics-consent {
    position: fixed;
    z-index: 10000;
    right: 1rem;
    bottom: 1rem;
    width: min(32rem, calc(100vw - 2rem));
    padding: 1rem;
    border: 1px solid var(--border-color, #555);
    border-radius: 0.75rem;
    background: var(--surface-color, #171717);
    color: var(--text-color, #f4f4f4);
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 35%);
}

.analytics-consent p {
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.analytics-consent div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
}

.analytics-consent button {
    min-height: 2.75rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid currentColor;
    border-radius: 0.45rem;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.analytics-consent button:last-child {
    background: var(--accent-primary);
    color: #15100c;
}

.analytics-consent button:focus-visible {
    outline: 3px solid #79b8ff;
    outline-offset: 2px;
}

.analytics-consent button:disabled {
    cursor: wait;
    opacity: 0.6;
}

@media (max-width: 640px) {
    .analytics-consent {
        right: 0.5rem;
        bottom: 0.5rem;
        width: calc(100vw - 1rem);
        padding: 0.75rem;
    }

    .analytics-consent p {
        margin-bottom: 0.625rem;
        font-size: 13px;
        line-height: 1.35;
    }

    .analytics-consent div {
        flex-wrap: nowrap;
    }

    .analytics-consent button {
        min-height: 2.375rem;
        padding: 0.45rem 0.7rem;
        font-size: 13px;
    }
}
