 /* --- General Styles --- */
 :root {
     --primary-blue: #056EB6;
     /* Changed Primary Color */
     --dark-blue: #023a62;
     --light-grey: #f4f7f6;
     --text-dark: #333;
     --text-light: #555;
     --border-color: #e0e0e0;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes backgroundGrid {
     0% {
         background-position: 0 0;
     }

     100% {
         background-position: 40px 40px;
     }
 }

 body {
     margin: 0;
     font-family: 'Adorsho Lipi', sans-serif;
     background-color: var(--light-grey);
     color: var(--text-dark);
     overflow-x: hidden;
 }

 .container {
     width: 90%;
     max-width: 1400px;
     /* Increased max-width for the new table */
     margin: 0 auto;
 }