body {
    user-select: none;
    overflow: hidden;
    background: linear-gradient(153deg, rgba(34, 49, 74, 1) 0%, rgba(36, 52, 77, 1) 49%, rgb(36 53 87) 100%);
    /*background: radial-gradient(circle, rgba(69,121,197,1) 0%, rgba(48,110,195,1) 50%, rgba(12,72,160,1) 100%);*/
}
/* --- Modal Overlay --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Grey overlay with 70% opacity */
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's on top of other elements */
    opacity: 0;
    transition: opacity 0.5s;
}
.popup-overlay.show {
    display: flex;
    opacity: 1;
    
}

/* When the modal is active (controlled by JS setting display: flex) */
/* .modal-overlay.active {
    display: flex;
} */


/* --- Popup Dialog --- */
.popup-dialog {
    background-color: #ffffff; /* White background for contrast */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    max-width: 500px; /* Adjust the width as needed */
    width: 90%; /* Responsive width */
    text-align: center;
    color: #032B44; /* Dark blue text color for theme consistency */
}

/* When the modal is active and the dialog is shown */
/* .modal-overlay.active .popup-dialog {
    transform: scale(1);
    opacity: 1;
} */

/* Basic styling for button inside popup */
.popup-dialog button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff; /* Example button color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.popup-dialog button:hover {
    background-color: #0056b3;
}
li {
    text-align: left;
}
.statHead {
    font-size: 1rem;
    font-family: 'Sl-Open-Sans', sans-serif;
    font-weight: bold;
    text-align: center;
}
.statHead {
    font-size: 0.95rem; /* Slightly increased from original, but still smaller than value */
    color: #A0A8B8; /* A slightly muted light grey, making it less dominant than the value */
    margin-bottom: 8px; /* Space between the heading and its value */
    opacity: 0.9; /* A touch of transparency */
}

.statItem {
    text-align: center;
    font-family: 'Sl-Open-Sans', sans-serif;
    font-size: 1.2em; /* Increase font size for values */
    font-weight: bold; /* Make values bold */
    margin-top: 0.2em; /* Add some top margin */
}

.statItem {
    color: white;
}
tr {
    width: 100%;
}
td {
    width: 25%;
}
td.spacer {
    width: 50%;
}
.ref {
    text-align: right;
    font-style: italic;
}
.ref-text {
    font-style: italic;
}