/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap'); */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --primary: #2F855A;
}

* {
  font-family: Poppins, Arial;
}

body{
  padding: 0px 15px;
}

.user-details{
  max-width: 500px;
  margin: auto auto;
}


.button {
  background-color: var(--primary);
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

.time_div{
  position: fixed;
  right: 10px;
  background-color: var(--primary);
  color: white;
  padding: 9px;
  border-radius: 6px;
  font-size: 13px;
}




/* _________ REVIEW ___________ */


   table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        th,
        td {
            border: 1px solid #ccc;
            padding: 8px;
            text-align: left;
        }

        th {
            background: #f4f4f4;
        }

        button {
            margin-right: 10px;
            margin-top: 10px;
        }

        .no-print {
            margin-bottom: 15px;
        }

        .filter-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 10px;
        }

        .full-width {
            grid-column: 1 / -1;
        }

        .filter-hidden {
            display: none;
        }


        /* Tablet */
        @media (max-width: 900px) {
            .filter-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile */
        @media (max-width: 500px) {
            .filter-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Hidden state */
        .filter-hidden {
            display: none;
        }

        @media print {
            .no-print {
                display: none;
            }
        }





/* The background shield */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent */
    backdrop-filter: blur(4px);    /* Blurs the background content */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;                 /* Above EVERYTHING */
    color: white;
    font-family: sans-serif;
}

/* Helper class to hide/show */
.overlay-hidden {
    display: none !important;
}

.loader-content {
    text-align: center;
}

/* A larger, nice-looking spinner */
.spinner-large {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 15px;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}