/* 1. The Loading Wheel Styling */
.loader_wheel {
    border: 4px solid #f3f3f3;       /* Light grey background */
    border-top: 4px solid #2e7d32;   /* Blue spinning boundary */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    display: none;                   /* Hidden by default */
    margin-top: 10px;
}

/* 2. The Spinning Animation Logic */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* #tab-labels {
    
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  justify-content: center;

} */

