  body {
      background: #1f2b6c;
      min-height: 100vh;
      color: #1f2b6c;

    }
    .bg-primary{
         background: #1f2b6c !important;
    }
   .btn-outline-primary-custom {
  color: #1f2b6c;
  border: 1px solid #1f2b6c;
  background-color: transparent;
}

.btn-outline-primary-custom:hover,
.btn-outline-primary-custom:focus {
  background-color: #1f2b6c;
  color: #fff;
  border-color: #1f2b6c;
}

    .top-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      padding: 20px 0;
      background-color: #ffffff;
    }
    .top-logos img {
      height: 60px;
      transition: transform 0.3s ease;
    }
    .top-logos img:hover {
      transform: scale(1.1);
    }
    .form-control {
      border: 2px solid #1f2b6c;
      border-radius: 0.5rem;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      box-shadow: none;
    }

    .card {
      background-color: #ffffff;
      border: 2px solid #f7941e;
      box-shadow: 0 4px 8px rgba(247, 148, 30, 0.3);
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(247, 148, 30, 0.5);
    }
    .btn-primary {
      background-color: #f7941e;
      border: none;
      align-items: center;
      justify-content: center;
    }
    .btn-primary:hover {
      background-color: #1f2b6c;
    }
    h2, h3, label {
      color: #1f2b6c;
      font-weight: bold;
    }
  .card-new {
  padding-left: 15px;
  padding-right: 15px;
  /* or shorthand: */
  /* padding: 0 15px; */
}
#dropdown{
      margin: 0px;
    position: absolute;
    inset: 24px -2px auto auto !important;
    transform: translate3d(0.333333px, 23.6667px, 0px);
}
.table-fixed {
  width: 100%;
  border-collapse: collapse;
}

.table-fixed thead, 
.table-fixed tbody, 
.table-fixed tr, 
.table-fixed td, 
.table-fixed th {
  display: block;
}

.table-fixed thead tr {
  /* fixed header with row as flex container */
  display: flex;
  width: 100%;
}

.table-fixed tbody {
  height: 500px;  /* fixed height */
  overflow-y: auto;
  overflow-x: hidden;
  width: 101%;
}

.table-fixed tbody tr {
  display: flex;
  width: 100%;
}

.table-fixed th, 
.table-fixed td {
  flex: 1;               /* equally divide columns */
  padding: 0.5rem;
  text-align: center;
  border: 1px solid #dee2e6;
  box-sizing: border-box; /* important */
}

.back-btn {
      margin-top: 25px;
      background-color: #1f2b6c;
      color: #fff;
    }

    .back-btn:hover {
      background-color:  #f7941e;
      color: #fff;
    }