.bg-black {
    --bs-bg-opacity: 1;
    background-color: #b3d4ff !important;
}

.btn-primary-signin {
    --bs-btn-color: #1a4bb8 !important;
    /* dark blue text for contrast */
    --bs-btn-bg: #b3d4ff !important;
    --bs-btn-border-color: #b3d4ff !important;
    --bs-btn-hover-color: #ffffff !important;
    --bs-btn-hover-bg: #4d90fe !important;
    --bs-btn-hover-border-color: #4d90fe !important;
    --bs-btn-focus-shadow-rgb: 179, 212, 255 !important;
    --bs-btn-active-color: #ffffff !important;
    --bs-btn-active-bg: #397bed !important;
    --bs-btn-active-border-color: #3674e4 !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
    --bs-btn-disabled-color: #ffffff !important;
    --bs-btn-disabled-bg: #b3d4ff !important;
    --bs-btn-disabled-border-color: #b3d4ff !important;
}

.text-muted {
    --bs-text-opacity: 1;
    /* color: rgb(30 78 158) !important; */
    color: var(--bs-secondary-color) !important;
}

.text-muted-resend {
    --bs-text-opacity: 1;
    color: rgb(30 78 158) !important;
}

.dataTable-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0 20px 0;
}

.dataTable-dropdown,
.dataTable-search {
    flex: 1;
    min-width: 200px;
}

/* Optional: align search to the right on larger screens */
@media (min-width: 769px) {
    .dataTable-dropdown {
        text-align: left;
    }

    .dataTable-search {
        text-align: right;
    }
}

/* On smaller screens, stack them vertically */
@media (max-width: 768px) {
    .dataTable-top {
        flex-direction: column;
        align-items: stretch;
    }

    .dataTable-dropdown,
    .dataTable-search {
        width: 100%;
        text-align: left;
    }

    .dataTable-search input {
        width: 100%;
    }
}

#loader {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ledgerlytic-loading-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    //backdrop-filter: blur(10px); /* Glass effect */
    background-color: rgba(0, 0, 0, 0.3);
    /* Soft overlay */
    z-index: 10;
}

.ledgerlytic-loader {
    width: 50px;
    height: 50px;
    position: relative;
}

.ledgerlytic-loader::after,
.ledgerlytic-loader::before {
    content: "";
    box-sizing: border-box;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fff;
    position: absolute;
    left: 0;
    top: 0;
    animation: ledgerlytic-animloader 1.5s linear infinite;
}

.ledgerlytic-loader::after {
    animation-delay: 0.75s;
}

@keyframes ledgerlytic-animloader {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

#profileImage {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.inactive-card {
    background-color: rgba(240, 5, 5, 0.17);
    border-radius: 5px;
}

#no-internet-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    color: white;
    text-align: center;
    padding-top: 100px;
}

#no-internet-popup img {
    width: 200px;
}

/* .quotation-status-dropdown {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 2px 4px;
    font-size: 0.875rem;
    transition: border 0.2s ease;
    border: 1px solid #fff;
}

.quotation-status-dropdown:hover {
    border: 1px solid #b3d4ff;
} */

.quotation-status-dropdown {
    border: 1px solid #ccc;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    background: #fff;
    padding: 4px 6px;
    font-size: 0.875rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.quotation-status-dropdown:hover,
.quotation-status-dropdown:focus {
    border-color: #007c86;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.popular-glow {
    background: linear-gradient(135deg, #ff6b6b, #ff9f43);
    color: #fff;
    border: none;
    font-weight: 600;
    box-shadow: 0 0 12px rgba(255, 111, 97, 0.6);
    animation: glowPulse 2s infinite;
}


@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 111, 97, 0.6);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 111, 97, 0.9);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 111, 97, 0.6);
    }
}

.plan-card {
    position: relative;
}

.corner-offer-tag {
    position: absolute;
    top: -8;
    right: -6;
    width: 80px;
    z-index: 15;
    pointer-events: none;
}


@keyframes fadeZoom {
    from {
        opacity: 0;
        transform: scale(0.7) rotate(10deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(10deg);
    }
}

select option:disabled {
    background-color: #f4f6f9 !important;
    color: #999;
}

.input-disabled {
    background-color: #f4f6f9 !important;
    color: #999;
    cursor: not-allowed;
}

.bg-custom-warn {
    background-color: #ffecd9;
}

.bg-custom-warn-expired {
    background-color: #f8d7da;
}

.bg-custom-success {
    background-color: #d1e7dd;
}