﻿.scan-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #63BA5C;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    height: 44px;
    min-width: 144px;
}
.scan-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #005977 url('/2025/images/finger-scan.svg') 8px 10px no-repeat;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    height: 44px;
    min-width: 144px;
    border: none;
    padding-left: 35px;
    float: right;
}
.pagetitle {
    margin-bottom: 10px;
}

    .pagetitle h1 {
        font-size: 24px;
        margin-bottom: 0;
        font-weight: 600;
        color: #012970;
    }

    .scan-link a i {
        margin-right: 5px;
    }

    .scan-link a:hover {
        background: #6839B3;
        color: #fff;
    } 

.ul-rupee li .form-check .form-check-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    background: #DCE3E3;
    border-radius: 12px;
    cursor: pointer;
    color: #4A4E69;
    padding: 2px 10px !important;
    font-size: 15px;
    font-weight: 500;
}

.ul-rupee li {
    width: 23.5%;
}

    .ul-rupee li .form-check .form-check-input:checked + .form-check-label {
        background: #604392;
        color: #fff;
    } 

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px !important;
    right: 13px !important;
}

.no-padding {
    padding: 13px 13px !important;
}

.reportdata * {
    font-size: 12px;
    font-family: verdana;
}

.btn-nits {
    margin-top: 5px;
}

.flft, .rlft, .top15 > div, .mysearchbox > div {
    float: left; margin-right:10px;
}

.top15, .mysearchbox {
    padding-top: 10px;
}

.reportbox > div {
    max-width: 100%;
    overflow-y: auto;
    float: left;
}

.reportdata {
    width: 100%;
}

.Success, .approved, .Approved, .success, .SUCCESS {
    float: right;
    font-size: 12px;
    background: #2a9d00;
    padding: 3px 5px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    margin-left: 10px;
}

.Failed, .rejected, .Rejected, .failure, .failed {
    float: right;
    font-size: 12px;
    background: #ec7a7a;
    padding: 3px 5px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    margin-left: 10px;
}

.Pending, .initiated, .initiated, .Inprocess, .inprocess, .InProcess {
    float: right;
    font-size: 12px;
    background: #8a8282;
    padding: 3px 5px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    margin-left: 10px;
}

.myReportlink {
    float: right !important;
}

.select2-container {
    margin-bottom: 0px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: inherit !important;
}

.mr-2 {
    margin-right: 10px;
}
.pr-1 {
    padding-right: 10px !important;
}
/* Dimmed background for modal */
.modalBackground {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed !important;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9998;
}

/* Main modal box */
.modalPopup {
    width: 380px;
    max-width: 95%;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    padding: 25px 30px;
    text-align: center;
    position: fixed !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    animation: modalFadeIn 0.3s ease;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

/* Close (X) button */
.modalclose {
    position: absolute !important;
    top: 10px;
    right: 10px;
    /*background: transparent !important;
    color: #555 !important;*/
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

    .modalclose:hover {
        /*color: #c0392b !important;*/
        transform: scale(1.1);
    }

/* Modal title */
.modalPopup .remitterinfox h3 {
    font-size: 18px !important;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input field */
.modalPopup .form-control {
    width: 100%;
    height: 42px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
    outline: none;
}

/* Submit button */
.modalPopup .loginbtn {
    background-color: #007bff !important;
    color: #fff !important;
    border-radius: 6px;
    padding: 10px 35px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.loginbtn:hover {
    background-color: #0056b3 !important;
    transform: translateY(-1px);
}

/* Small fade-in animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
/* Overlay container for loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(3px);
    animation: fadeInLoader 0.3s ease;
}

    /* Add your logo in background */
    .loader-container::before {
        content: "";
        position: absolute;
        inset: 0;
        /*background: url('/2025/images/logo.png') no-repeat center center;*/
        background-size: 150px; /* Adjust size of logo */
        opacity: 0.08; /* Make it subtle */
        z-index: 99999;
    }

/* Loader spinner */
.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #e0e0e0;
    border-top: 6px solid #007bff; /* main color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

/* Loading text */
.loading-text {
    margin-top: 18px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    z-index: 1;
    text-align: center;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

/* Rotation animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Fade-in for loader overlay */
@keyframes fadeInLoader {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #005977, #2575fc);
    border-radius: 10px;
    border: 2px solid #f0f0f0; /* Adds padding effect */
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #2575fc, #005977);
    }

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #005977 #f0f0f0;
}

ul.vertical-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}

    ul.vertical-menu li {
        border-bottom: 1px solid #eee;
    }

        ul.vertical-menu li:last-child {
            border-bottom: none;
        }

        ul.vertical-menu li a {
            display: block;
            padding: 14px 20px;
            text-decoration: none;
            color: #333;
            font-size: 16px;
            transition: all 0.3s ease;
        }

            ul.vertical-menu li a:hover {
                background: #005977;
                color: #fff;
                padding-left: 28px;
            }

            ul.vertical-menu li a.active {
                background: #005977;
                color: #fff;
            }
