/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: #00008b;
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  user-select: none;
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

 



/* table codes */

table {
         width: 100% ;
         border-collapse: collapse;
         font-family: sans-serif;
         color: white;
         text-align: center;
         box-shadow: rgb(0 0 0 / 90%) 0px 3px 8px;
         
         border-bottom-right-radius:5px;
      }
      table, th, td {
         border: 2px solid #00008b;
      }
      th, td {
         padding: 5px;
      }
     
      thead td, tbody td {
         text-align: center;
      }

      tfoot td {
         text-align: center;
      }


    
    .elimufix-grid {
        margin-top:55px;
        background-color: #fff;
        border-radius:20px;
      padding: 10px;
      text-align: center;
     margin-bottom: 55px;
        box-shadow: rgb(0 0 0 / 90%) 0px 3px 8px;
  }
  
  
  .elimufix-grid ul {
      clear: both;
      margin: 15px 0 20px;
      padding:0;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  
  .coll-2 ul li {
      width: 48%;
  }
  
  .elimufix-grid li {
      font-size: 0.9em;
      font-weight: 1000;
      line-height: 1.3em;
      text-align: center;
      background: #ffffff;
      border-radius: 5px;
      margin: 5px 0;
      box-sizing: border-box;
      box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
      padding: 10px 0 10px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .elimufix-grid li a {
      display: block;
      text-decoration: none;
      color: #333;
  }
  
  .elimufix-grid li svg, img {
      margin: 3px 0;
      width: 90px;
      height: 90px;
      fill: #00008b;
      display: inline-block;
  }
  
  .elimufix-grid li span {
      display: block;
      padding: 0 3px;
  }
  
  .elimufix-grid p{
      text-align: justify;
      font-size: medium;
  }

  .elimufix-notes{
      margin-top: 30px;
      background-color: #fff;
      box-sizing: border-box;
       
      text-align: justify;
      border-radius: 20px;
      padding: 10px;
  }
  .elimufix-notes h3,h4{
      text-align: center;
      
  }


 .link{

      justify-content: space-between;

 }
          
     
  .link a{
      font-weight: bold;
      font-size: medium;
      border: 2px solid black;
      padding: 6px;
      text-decoration: none;
      border-top-left-radius: 5px;
      border-bottom-right-radius: 5px;
      line-height: 1.3em;
      clear: both;
      color: #00008b;
      margin: 5px;
      display: block;
      background-color: #fff;
      box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
  }
  .link a:hover{
      background-color:#00008b;
      color:#fff;
      border-bottom-right-radius:20px;
      border-top-left-radius: 20px;
      border-bottom-left-radius: 5px;
      border-top-right-radius: 5px;
      border-bottom: 2px solid red;
      border-left: 2px solid red;
      border-right: 2px solid red;
  }



  .img-ico{
    font-size: 2.25rem;
    width: 25px;
    height: 25px;
  }

 
    
    iframe {
        user-select: none;
        width: 100%;
        height: 100vh; /* Full viewport height */
        border: none; /* Remove default border */
        margin-bottom:80px;
    }

    
 

   

  
 /* Style for the bottom link */
.bottom-link {
    font-size: 20px;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0px; /* Distance from the bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
    background-color: #00008b; /* Background color */
    color: white; /* Text color */
    padding: 15px; /* Padding */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    z-index: 900; /* Ensure it is above other content */
    font-weight: bold;
}

.bottom-link:hover {
    background-color: green; /* Darker background on hover */
}

/* Modal Styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 100%; /* Could be more or less, depending on screen size */
    max-width: 100%; /* Max width of the modal */
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Button Grid Styling */
.button-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 10px; /* Space between buttons */
    margin-top: 20px;
}

.modal-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #007bff;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.modal-button i {
    margin-right: 8px; /* Space between icon and text */
}

.modal-button:hover {
    background-color: #0056b3;
}

/* Responsive design for the modal */
@media (max-width: 600px) {
    .modal-content {
        width: 100%; /* Adjust width for small screens */
    }
}

