﻿#components-reconnect-modal 
{
    display: none !important;
}
.fs-7 {
    font-size: 0.75rem; /* or any size smaller than fs-6 (which is 1rem) */
}
.card-footer {
    background-color: transparent !important;
    margin-top: 15px !important;
}

/*Payment Calculator Style*/
.payment-highlight-box {
    border: 1px ridge;
    border-radius: 1rem;
    padding: 1rem 1rem 1rem;
    margin-top: 2rem;
    background-color: white;
    position: relative;
}

.payment-box-label {
    font-weight: bold;
    color: red;
    background-color: white;
    padding: 0 1rem;
    top: -.70rem;
}

.payment-label {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.payment-field {
    max-width: 160px;
}


@media (min-width: 576px) {
    .payment-cols {
        display: flex;
        justify-content: space-evenly;
    }

    .payment-field {
        margin-bottom: 0;
    }
}

.carousel-thumbnails {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0.5rem 0;
    gap: 0.5rem;
}

    .carousel-thumbnails img {
        height: 70px;
        width: auto;
        cursor: pointer;
        border-radius: 4px;
        opacity: 0.6;
        transition: 0.3s;
    }

        .carousel-thumbnails img.active {
            border: 2px solid #0d6efd;
            opacity: 1;
        }
#thumbnailStrip {
    scroll-behavior: smooth;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    max-width: 100%;
}

    #thumbnailStrip::-webkit-scrollbar {
        display: none;
    }

    #thumbnailStrip .thumbnail-img {
        filter: blur(2px);
        transition: filter 0.3s ease;
    }

    #thumbnailStrip .thumb-btn.active .thumbnail-img {
        filter: none;
        border: 2px solid #0d6efd;
        border-radius: 4px;
    }

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
    filter: blur(2px);
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

    .thumbnail.active {
        filter: none;
        border: 2px solid #0d6efd;
    }

.btn-green {
    background-color: #28a745; /* Bootstrap success green */
    color: white;
    border: 1px solid #28a745;
}

    .btn-green:hover {
        background-color: #218838;
        border-color: #1e7e34;
        color: white;
    }
