﻿.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 150px 20px;
    border: 1px solid #a0c0e0;
    background-color: #e1f2fd;
    border-radius: 10px;
    position: absolute;
    z-index: 999999;
    width: 99%;
    opacity: 0.9;
    height: 91vh;
    top: 0;
    left: 0.5%;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #2c3e50;
}

.card-title {
    position: relative
}

    .card-title h2 a {
        position: absolute;
        top: 5%;
        right: 17%;
        font-size: 13px;
        color: #fff;
        text-decoration: none;
        background: #0d6efd;
        padding: 3px 8px;
        border-radius: 3px;
    }

.limitinfo table td {
    padding: 2px 5px;
    text-align: center;
    font-size: 13px;
}

.limitinfo table {
    margin-top: 18px;
}

    .limitinfo table thead td {
        background: #012970;
        color: #fff;
    }

@media (max-width:400px) {
    .card-title h2 a {
        bottom: 5% !important;
        right: 2% !important;
        top: unset !important;
    }
}
