/* Fixed informational notice (essential site cookies). Neutral filename avoids ad-block false positives on "cookie" in the URL. */

.va-cookie-notice {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    margin: 0.75rem;
    max-width: min(56rem, calc(100vw - 1.5rem));
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: #e2e8f0;
    background: rgba(15, 25, 55, 0.92);
    border: 1px solid rgba(96, 165, 250, 0.35);
    border-radius: 12px;
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    box-shadow:
        0 8px 32px rgba(0, 10, 40, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.va-cookie-notice[hidden] {
    display: none !important;
}

.va-cookie-notice__body {
    flex: 1 1 16rem;
    min-width: 0;
}

.va-cookie-notice__full {
    display: inline;
}

.va-cookie-notice__short {
    display: none;
}

@media (max-width: 520px) {
    .va-cookie-notice__full {
        display: none;
    }

    .va-cookie-notice__short {
        display: inline;
    }
}

.va-cookie-notice__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem 0.75rem;
    flex-shrink: 0;
}

/* Glass-themed buttons (self-contained; works on SkyHub without app buttons.css) */
.va-cookie-notice__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    min-height: 2.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    box-sizing: border-box;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.va-cookie-notice__btn svg {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.va-cookie-notice__btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #e8eef8;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.va-cookie-notice__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 16px rgba(96, 165, 250, 0.15);
}

.va-cookie-notice__btn--primary {
    color: #f8fafc;
    background: rgba(0, 123, 255, 0.28);
    border-color: rgba(96, 165, 250, 0.55);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 0 0 0 rgba(59, 130, 246, 0.2);
}

.va-cookie-notice__btn--primary:hover {
    background: rgba(0, 123, 255, 0.4);
    border-color: rgba(147, 197, 253, 0.75);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 20px rgba(59, 130, 246, 0.35);
}

.va-cookie-notice__btn:focus-visible {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}
