﻿.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

.b-example-divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
}

.bi {
    vertical-align: -.125em;
    fill: currentColor;
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

    .nav-scroller .nav {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

.btn-bd-primary {
    --bd-violet-bg: #712cf9;
    --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-violet-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: #6528e0;
    --bs-btn-hover-border-color: #6528e0;
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #5a23c8;
    --bs-btn-active-border-color: #5a23c8;
}

.bd-mode-toggle {
    z-index: 1500;
}

    .bd-mode-toggle .dropdown-menu .active .bi {
        display: block !important;
    }

.icon-square {
    width: 3rem;
    height: 3rem;
    border-radius: .75rem;
}

body {
    background-image: linear-gradient(180deg, var(--bs-secondary-bg), var(--bs-body-bg) 100px, var(--bs-body-bg));
}

.container {
    max-width: 960px;
}

.pricing-header {
    max-width: 700px;
}

.live-link {
    display: flex;
    align-items: center;
    padding-left: 5px;
    padding-right: 5px;    
}

nav .live-link {
    color: red!important;    
}
nav .live-link:hover {
    color: red !important;
}

/* Blink animation for live indicator */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.live-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: red;
    border-radius: 50%;
    margin-right: 5px;
    animation: blink 1.5s ease-in-out infinite;
}

button.active, a.active {
    font-weight: bolder /* Change this to your desired color */
}

input.short-width {
    max-width: 200px;
}

a.edit-score {
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
}

.card-hover:hover {
    background-color: #5cb3c4; /* Light gray background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: background-color 0.3s, box-shadow 0.3s; /* Smooth transition */
}

/* gradient text */
.text-gradient-blue-green {
    background: linear-gradient(90deg, #3c83f6, #16a249);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* fallback */
}

/* Gradient button (blue -> green) with white text */
.btn-gradient {
    background-image: linear-gradient(90deg, #3c83f6 0%, #16a249 100%);
    color: #fff !important;
    border: 0;
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .15);
}

.btn-gradient:hover,
.btn-gradient:focus {
    filter: brightness(0.95);
    color: #fff !important;
}

.btn-gradient:active {
    filter: brightness(0.9);
    transform: translateY(1px);
}

.btn-gradient:focus-visible {
    outline: 0;
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .15), 0 0 0 .25rem rgba(60, 131, 246, 0.35);
}

.btn-gradient.disabled,
.btn-gradient:disabled {
    opacity: .65;
    box-shadow: none;
    pointer-events: none;
}

/* Levitation animation for badges (gentle up/down) */
@keyframes levitate {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-4px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(4px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Applies the levitation animation */
.badge-levitate {
    display: inline-block;
    animation: levitate 3.2s ease-in-out infinite;
    will-change: transform;
}

/* Pause animation for users preferring reduced motion */
@media (prefers-reduced-motion: reduce) {
    .badge-levitate {
        animation: none;
    }
}

/* Testimonials */
.testimonial-box {
    overflow: hidden;
}

.testimonial-box i.bi-quote {
    pointer-events: none;
}

.testimonial-box:hover {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    transform: translateY(-2px);
    transition: all .25s ease;
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-box:hover {
        transform: none;
    }
}

.blog-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1rem auto;
    border: 3px solid var(--bs-border-color, #dee2e6);
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 4px;
    background-color: #fff;
}