﻿.auto-style1 {
    height: 38px;
}

.auto-style2 {
    height: 44px;
}

.auto-style4 {
    height: 36px;
}

.auto-style5 {
    height: 48px;
}

.auto-style6 {
    height: 40px;
}

.auto-style7 {
    width: 365px;
}

.auto-style8 {
    height: 56px;
}

.wd175 {
    width: 175px;
}

.notetext {
    color: red;
}

.customGridView td:first-child {
    text-align: center;
}

.customGridView td:last-child {
    text-align: center;
    display: flex !important;
}

.customGridView tr:hover {
    background-color: #f1f1f1;
}

#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

.loader-text {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

