﻿


.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%;
}



.thead-lightblue {
    background-color: #add8e6; /* light blue */
    color: #000; /* black text for readability */
}

body {
    font-size: 14px; /* Set a default base font size */
}

/* Or, for better control with rem units */
html {
    font-size: 100%; /* Default browser font size */
}

/* Now, 1rem will equal the default browser font size, and you can adjust other elements relative to it */
p {
    font-size: 0.8rem; /* 80% of the default browser font size */
}

/* last resort */
.filters-card .form-control {
    font-size: 0.875rem !important;
}
/* Make sure parents don't clip the native dropdown */
.filters-row, .filters, .card-body, .form-row, .row {
    overflow: visible !important; /* allow dropdown to show outside */
}

/* Remove transform on potential problematic containers (only if safe) */
.filters-row, .card-body, .some-transformed-parent {
    transform: none !important;
}

/* Ensure the select itself sits above siblings */
/*#promotionSelect,
.selectpicker,
.select2-container {
    position: relative !important;
    z-index: 3000 !important;
}*/
.fw-bold i {
    font-weight: 700;
}
/* If dropdown is a plugin, also increase its menu z-index */
.select2-container--open .select2-dropdown,
.bootstrap-select .dropdown-menu {
    z-index: 99999 !important;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.5); /* semi-transparent gray */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* keep it above everything */
}

/* Loader animation */
.loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #25b09b;
    --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}
#sameReceiptClaimList .list-group-item {
    border-radius: 4px;
    margin-bottom: 6px;
    cursor: default;
}

.badge-current {
    background-color: #2f855a; /* green */
    color: #fff;
    font-size: 0.65rem;
    padding: 0.35rem 0.5rem;
    border-radius: 0.25rem;
}
.approved-button,
.pending-button,
.rejected-button {
    padding: 2px 2px !important;
    text-align: center;
    border-radius: 9999px; /* fully rounded pill shape */
    font-weight: bold;
    font-family: Arial, sans-serif;
    display: inline-block;
    min-width: 90px;
    cursor: default;
    transition: all 0.2s ease-in-out;
}

.no-results{
    padding:10px!important;
    font-weight:500

}
.modal-body
.approved-button,
.pending-button,
.rejected-button {
    padding: 2px 2px !important;
    text-align: center;
    border-radius: 9999px; /* fully rounded pill shape */
    font-weight: bold;
    font-family: Arial, sans-serif;
    display: inline-block;
    min-width: 75px;
    cursor: default;
    transition: all 0.2s ease-in-out;
}

/* 🟢 Approved */
.approved-button {
    background-color: #e9f8ee !important;
    border: 1px solid #4CAF50;
    color: #4CAF50 !important;
}
.currentrecord-button {
    padding: 2px 2px !important;
    text-align: center;
    border-radius: 9999px; /* fully rounded pill shape */
    font-weight: bold;
    font-family: Arial, sans-serif;
    display: inline-block;
    min-width: 75px;
    cursor: default;
    transition: all 0.2s ease-in-out;
    background-color: #3d5c62 !important;
    border-color: #3d5c62;
    color: white !important;
}

 
    .approved-button:hover {
        background-color: #d9f1df !important;
        border-color: #43a047;
        color: #388e3c !important;
    }

/* 🟠 Pending */
.pending-button {
    background-color: #fff6eb !important;
    border: 1px solid #ffb84d;
    color: #ff9800 !important;
}

    .pending-button:hover {
        background-color: #ffeacc !important;
        border-color: #ff9800;
        color: #fb8c00 !important;
    }

/* 🔴 Rejected */
.rejected-button {
    background-color: #fdeaea !important;
    border: 1px solid #f44336;
    color: #f44336 !important;
}

    .rejected-button:hover {
        background-color: #fbd2d2 !important;
        border-color: #e53935;
        color: #d32f2f !important;
    }




@keyframes l3 {
    to {
        transform: rotate(1turn);
    }
}
