 @import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&display=swap');

  @import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap%27');

  p {
    margin: 0px;
    margin-left: 15px;
  }

  .show {
    background-color: white;
    color: #002284;
  }

  .hide {
    background-color: transparent;
    color: white;
  }

  /* .Main_Container {
    display: grid;
    grid-template-columns: 18% 80%;
    height: 100vh;
    justify-content: space-between;
  } */

  p h1 h2 h3 h4 h5 h6 {
    margin: 0px;
    padding: 0px;
  }

  p {
    margin-left: 10px;
  }


  .Left_Panel {
    background: #002284;
    color: white;
  }

  .Form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 15px;
    column-gap: 15px;
  }

  .Sub_Form {
    display: flex;
    flex-direction: column;
  }

  input,
  select {
    background: #EDEEF5;
    border-radius: 5px;
    border: 0px;
    height: 40px;
    padding: 10px;
  }

  label {
    font-family: roboto;
    font-size: 16px;
    font-weight: 500;
    height: 45px;
    align-content: end;
  }

  button {
    border-radius: 5px;
  }

  .BlueButton {
    background-color: #002284;
    color: white;
    border: 0px;
    border-radius: 5px;
    padding: 5px 10px;
  }

  .BlackButton {
    background-color: Black;
    color: white;
    padding: 5px 10px;
  }

  button {
    border: 0px;
    border-radius: 5px;
  }

  .width1 {
    width: 150px;
    height: 45px;
  }



  .width2 {
    width: auto;
    height: 35px;
    border-radius: 5px;
    font-family: Fira Sans;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 400;
  }

  .scroll-wrapper {
    width: 100%;
    margin-top: 25px;
    margin: auto;
    position: relative;
    overflow: hidden;
    padding: 0px 15px;
    background: #EDEEF5;
    border: 1px solid #D0D2E3;
    border-radius: 10px;
  }

  .Heading {
    font-size: 16px;
    font-weight: 600;
    font-family: Roboto;
  }

  /* .table-container {
    overflow-x: auto;
    scrollbar-width: none;
   
    align-content: center;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    height: 40vh;
  } */

  .table thead th {
    vertical-align: middle;
    border: 1px solid white;
  }

  th {
    background: #002284;
    height: auto;
    color: white;
    vertical-align: top;
    font-family: Fira Sans;
    font-weight: 500;
  }

  tr {
    height: 50px;
    font-family: roboto;
    background: #F8FAFB;
    border: 1px solid #D3D5E9;
    border-radius: 5px;
  }

  .table-container th,
  .table-container td {
    width: 150px;
    max-width: 300px;
    word-wrap: break-word;
    vertical-align: middle;
    text-align: center;
  }

  .table-container tr {
    border-radius: 10px;
  }

  th:first-child,
  td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }

  th:last-child,
  td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .SubLeftPanel button {
    display: flex;
    border: 0px;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 5px;
    height: 60px;
    font-family: Roboto;
  }

  #overlay_Delete {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Semi-transparent background */
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    z-index: 1000;
  }

  #Delete_content {
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
    overflow: auto;
    border-radius: 15px;
    text-align: center;
    width: 30%;
    height: 35%;
  }


  body.model-active1 {
    overflow: hidden;
  }

  input:read-only {
    background-color: LIGHTgrey;
    cursor: not-allowed;
  }

  .overlay.active .overlay-content {
    animation: slideIn 1.5s forwards;
  }

  /* Exit animation */

  .overlay.closing .overlay-content {
    animation: slideOut 1.5s forwards;
  }

  /* Overlay visibility */
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Disable background scrolling */

  body.no-scroll {
    overflow: hidden;
  }

  /* Fullscreen loading screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

/* Loader spinner */
.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #007bff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

/* Spin animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

input[type=checkbox]{
  cursor: pointer;
}

.marquee-container {
  background: linear-gradient(90deg, #002284 0%, #0039a6 100%);
  color: white;
  padding: 5px 0;
  overflow: hidden;
  position: fixed;
  bottom: 44px; /* Adjust based on your footer height */
  left: 0;
  right: 0;
  margin: 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: 'Fira Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding-left: 100%;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee-content:hover {
  animation-play-state: paused;
}@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}