html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}
.accordion-item {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, .125);
}
.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: transparent;
    box-shadow: none;
}
.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: transparent;
    border: 0;
    color: white;
    border-radius: 0;
    overflow-anchor: none;
}
    .accordion-button::after {
        flex-shrink: 0;
        width: 1.25rem;
        height: 1.25rem;
        margin-left: auto;
        content: "";
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-size: 1.25rem;
    }
    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transform: rotate(-180deg);
    }
.list-group-item {
    position: relative;
    display: block;
    padding: .5rem 1rem;
    color: #ffffff;
    text-decoration: none;
    background-color: transparent;
    border: none;
}
.accordion-item {
    background-color: transparent;
    border: none;
}
.report-fab {
    bottom: 20px;
    z-index: 2500;
    background: #4669f7;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ai-thinking {
    color: #fff;
    font-style: italic;
}

.thinking-flash {
    animation: thinkFlash 1.1s ease-in-out infinite;
}

.think-wrap {
    display: flex;
    align-items: center;
    gap: .4rem;
}

    .think-wrap .dot {
        display: inline-block; /* allow width/height */
        width: .48rem;
        height: .48rem;
        border-radius: 50%;
        background: var(--think-dot, rgba(255,255,255,.35));
        animation: dotPulse 1.1s ease-in-out infinite !important; /* force on */
        will-change: transform, opacity;
    }

        .think-wrap .dot:nth-child(1) {
            animation-delay: 0s;
        }

        .think-wrap .dot:nth-child(2) {
            animation-delay: .15s;
        }

        .think-wrap .dot:nth-child(3) {
            animation-delay: .30s;
        }

.think-text {
    color: #fff;
    font-style: italic;
    opacity: .85;
}

/* keyframes */
@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(.6);
        opacity: .35;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* If your OS is set to "Reduce motion", this re-enables just for the dots */
@media (prefers-reduced-motion: reduce) {
    body.allow-motion .think-wrap .dot {
        animation: dotPulse 1.1s ease-in-out infinite !important;
    }
}