* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito";
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #427ca3;
    border-radius: 10px;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.page-item {
    margin-right: -1px;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #005A98;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-link:hover {
    z-index: 2;
    color: #003961;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #005A98;
    border-color: #005A98;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
  }
  
  .modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
  }
  
  .modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
            transform: translate(0, -25%);
  }
  
  @media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
      transition: none;
    }
  }
  
  .modal.show .modal-dialog {
    -webkit-transform: none;
            transform: none;
  }
  
  .modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: calc(100% - (0.5rem * 2));
  }
  
  .modal-dialog-centered::before {
    display: block;
    height: calc(100vh - (0.5rem * 2));
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    content: "";
  }
  
  .modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
  }
  
  .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
  }
  
  .modal-backdrop.fade {
    opacity: 0;
  }
  
  .modal-backdrop.show {
    opacity: 0.5;
  }
  
  .modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
  }
  
  .modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
  }
  
  .modal-title {
    margin-bottom: 0;
    line-height: 1.5;
  }
  
  .modal-body {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 1rem;
  }
  
  .modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
  }
  
  .modal-footer > :not(:first-child) {
    margin-left: 0.25rem;
  }
  
  .modal-footer > :not(:last-child) {
    margin-right: 0.25rem;
  }
  
  .modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
  }
  
  @media (min-width: 576px) {
    .modal-dialog {
      max-width: 500px;
      margin: 1.75rem auto;
    }
  
    .modal-dialog-centered {
      min-height: calc(100% - (1.75rem * 2));
    }
  
    .modal-dialog-centered::before {
      height: calc(100vh - (1.75rem * 2));
      height: -webkit-min-content;
      height: -moz-min-content;
      height: min-content;
    }
  }
  
  @media (min-width: 992px) {
    .modal-lg,
  .modal-xl {
      max-width: 800px;
    }
  }
  
  @media (min-width: 1200px) {
    .modal-xl {
      max-width: 1140px;
    }
  }

hr {
    border-bottom: thin solid #005A98 !important;
    margin: 20px 0;
}

main {
    flex: 1;
}

.login-container {
    width: 840px;
    height: 480px;
    background: #f1f1f1;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,0);
    border-radius: 6px;
    box-shadow: 0 0 30px #00000057;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    align-items: center;
    padding-right: 45px;
}

.logo-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 56px;
}

.logo-image {
    max-width: 400px;
    max-height: 300px;
}

.form-container {
    width: 100%;
}

.user input[type='email'], .user input[type='password'] {
    border: 1px solid #005998;
}

hr {
    border-color: #005998;
}

.form-group, .submit-btn-user {
    margin-bottom: 30px;
}

.reset-pass-card {
    margin-top: 100px !important;
    box-shadow: 0 0 30px #00000057;
}

.reset-pass-card input[type='email'] {
    border: 1px solid #005998;
}

.links, .copyright {
    opacity: 0;
    pointer-events: none;
    transition: 1.4s;
    position: fixed;
    z-index: 15;
}

.nav {
    height: 70px;
    width: 100%;
    background: #f1f1f1;
    box-shadow: 0 0 15px #00000033;
    position: fixed;
    top: 0;
    z-index: 14;
}

.show {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.show .user-stuff {
    font-size: 20px;
}

.show form {
    display: flex;
}

.show input[type="text"] {
    width: 300px;
    height: 40px;
    padding: 5px;
    font-size: 16px;
    outline: none;
    border: 1px solid #005A98;
    border-radius: 5px 0 0 5px;
}

.show button {
    height: 40px;
    padding: 5px 17px;
    margin: 0;
    background: #005A98;
    border: 1px solid #005A98;
    border-left: none;
    border-radius: 0 5px 5px 0;
    font-size: 20px;
    color: white;
    cursor: pointer;
}

.burger {
    height: 39px;
    width: 60px;
    cursor: pointer;
    z-index: 13;
}

.burger .burger-line {
    width: 100%;
    height: 13px;
    border-top: 2px solid #f1f1f1;
}

.blob-1 {
    pointer-events: none;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #7AB8E3;
    position: fixed;
    z-index: 2;
    top: -110px;
    transition: 0.7s;
    left: 90%;
}

.links {
    height: 500px;
}

.links-list {
    position: relative;
    top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    flex-direction: column;
    left: 400px;
    height: 95%;
}

.link-seperator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 990px;
    margin-bottom: 60px;
    font-size: 23px;
}

.link a:not(.sublink) {
    display: inline-block;
    width: 290px;
    background: #4690c6;
    padding: 25px 45px;
    border-radius: 5px;
    color: #f1f1f1;
    position: relative;
    text-align: center;
}

.link a:hover {
    background: #2d6d9a;
}

.copyright {
    font-size: 21px;
    color: #4B6C83;
    right: 220px;
    bottom: 65px;
    z-index: 3;
}

a {
    color: #EB7878;
    text-decoration: none;
}

.user-stuff-toggle {
    cursor: pointer;
}

.user-stuff-drop {
    display: none;
    position: fixed;
    top: 90px;
    left: 30px;
    background: #f1f1f1;
    box-shadow: 0 0 10px #00000033;
    height: 90px;
    width: 130px;
    z-index: 9;
    border-radius: 5px;
}

.user-stuff-drop ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style-type: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.user-stuff-drop li{
    width: 100%;
    height: 50%;
}

.user-stuff-drop li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.user-stuff-drop li a:nth-child(1) {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.user-stuff-drop li a:hover {
    background-color: #fff;
}

.nodrop {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 90px;
    left: 125px;
    background: #f1f1f1;
    box-shadow: 0 0 10px #00000033;
    padding: 14px 20px;
    z-index: 9;
    border-radius: 5px;
}

.nodrop h6 {
    font-size: 17px;
    margin-bottom: 15px;
}

.nodrop a.small.dropdown-item {
    font-size: 17px;
}

.sublinks {
    display: none;
    margin-top: 12px;
    background: #f1f1f1;
    flex-direction: column;
    position: fixed;
    /* padding: 10px 30px; */
    /* padding-right: 60px; */
    width: 290px;
    font-size: 20px;
    border-radius: 5px;
    z-index: 10;
}

.sublink {
    height: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 8px 0;
    border-radius: 5px;
}

.sublink:hover {
    background-color: #fff !important;
}

.sublinks:nth-child(1) {
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
}

.sublinks:last-child {
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.nav-brand-text {
    font-size: 35px;
    margin-top: -36px;
    margin-bottom: 55px;
    color: #456378;
    font-weight: bold;
}

.container {
    width: 100%;
    margin: 120px 0;
    margin-bottom: 50px;
    padding: 0 30px;
}

.container h2 {
    width: 100%;
    height: 60px;
    background: #005A98;
    display: flex;
    padding: 0 30px;
    align-items: center;
    color: white;
    border-radius: 12px 12px 0 0;
    justify-content: space-between;
    box-shadow: 0 0 10px #0000004b;
}

.container h2 a {
    color: yellow;
    font-style: italic;
}

.table-wrapper {
    border-radius: 0 0 12px 12px;
    background: #ffffff;
    padding: 20px 30px;
    padding-bottom: 30px;
    box-shadow: 0 0 10px #0000004b;
    position: relative;
    width: 100%;
}

.table-wrapper::before {
    content: '';
    position: absolute;
    top: -17px; /* Adjust to match the shadow offset and blur */
    left: 0;
    right: 0;
    height: 18px; /* Adjust to match the shadow offset and blur */
    background-color: #005A98;
    z-index: 1;
}

.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    text-align: center;
    padding: 20px 15px;
    border-bottom: 1px solid #005A98;
}

th {
    border-top: 1px solid #005A98;
}

.dlt-btn {
    border: none;
    outline: none;
    padding: 10px 15px;
    background: #EB7878;
    font-size: 16px;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
}

.footer {
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px #0000002f;
    background: #ffffff;
    position: absolute;
    bottom: 0;
    margin-bottom: -100px;
}

.footer p {
    display: inline;
    color: #4B6C83;
}

.search-bar {
    font-size: 23px;
    color: #005A98;
}

#app {
    position: relative;
    /* height: 100%; */
}

.reg-form {
    width: 600px;
    margin: auto;
    margin-top: 100px;
}

form .row {
    display: flex;
    align-items: center;
}
form .row .input-con:nth-child(even) {
    margin: 0 40px;
}

.input-con {
    display: flex;
    flex-direction: column;
    /* height: 80px; */
    padding: 10px 0;
}

.input-con label {
    font-size: 18px;
    margin-bottom: 5px;
}

.input-con input, button, select {
    height: 40px;
    padding: 8px;
    outline: none;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1.5px solid #005A98;
}

.input-con textarea:not(.note-text) {
    border-radius: 5px;
    height: 80px !important;
    border: 1.5px solid #005A98;
    padding: 8px;
    outline: none;
    font-size: 18px;
}

.input-con button, input[type="submit"]{
    border: none;
    background: #005A98;
    color: white;
    margin-top: 10px;
    cursor: pointer;
}

.input-con button:hover {
    background: #003961;
}

.input-con input[type='text']:focus, input[type='email']:focus, input[type='password']:focus, select:focus, textarea:not(.note-text):focus {
    border: 2px solid #003961;
}

.input-con input[type='date'], input[type="time"] {
    width: 200px;
}

.input-con input[type='file'] {
    display: inline-block;
    border: none;
    width: auto;
    padding: 0;
}

.card {
    /* position: relative;
    top: 120px; */
    margin-top: 120px !important;
    width: 1000px;
    margin: auto;
    background: white;
    box-shadow: 0 0 15px #00000033;
    padding: 15px 28px;
    border-radius: 10px;
    padding-bottom: 28px;
    margin-bottom: 50px;
}

.card-header {
    font-size: 35px;
    margin: 10px 0 15px 0;
}

.card-header h5, h6 {
    display: inline;
}

.card-body {
    font-size: 18px;
    min-height: 0 !important;
}

.card-body h5{
    font-size: 20px;
    margin-bottom: 16px;
}

.card-header a{
    float: right;
    font-size: 20px;
}

.radio-con {
    display: flex;
    margin-bottom: 20px;
    width: 220px;
    justify-content: space-between;
}

.radio-con label {
    width: 38%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.radio-col {
    display: flex;
    align-items: center;
}

.radio-col input {
    margin-left: 10px;
}

.radio-inline {
    display: flex !important;
    width: 55px !important;
}

#data_links {
    margin-top: 20px;
}

.card-nav {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style-type: none;
    flex-direction: column;
    height: 120px;
    margin-bottom: 50px;
}

.card-nav-div {
    display: flex;
    justify-content: space-between;
}

.card-nav-item:not(.dropdown-active) {
    background: #e1e1e1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 18px;
    color: #f1f1f1 !important;
}

.card-nav-link {
    padding: 10px 15px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000 !important;
}

.card-nav-link:hover {
    background: #d1d1d1;
    border-radius: 5px;
}

.card-sublinks-toggle {
    background: #e1e1e1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 18px;
    width: 150px;
}

.card-sublinks {
    display: none;
    position: absolute;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 150px;
    top: 160px;
}

.card-sublink {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e1e1e1;
    color: #000;
    z-index: 10;
    font-size: 18px;
}

.card-sublink:nth-child(1) {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.card-sublink:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.card-sublink:hover {
    background: #d1d1d1;
}

ul.files {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}

ul.files li {
    margin: 10px 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.btn-dlt {
    color: #f1f1f1;
    background: #EB7878;
    padding: 10px 15px;
    border-radius: 5px;
}

.btn-dlt:hover {
    background: #d46e6e;
}

td input[type="text"], td input[type="number"], td input[type="email"], td input[type="date"], td input[type="time"], td select {
    height: 40px;
    /* display: block; */
    border-radius: 5px;
    border: 1px solid #005a98;
    padding: 0 5px;
    outline: none;
}

td input[type="text"]:focus, td input[type="number"]:focus, td input[type="email"]:focus, td input[type="date"]:focus, td input[type="time"]:focus, td select:focus {
    border: 2px solid #003961;
}

td button, td input[type="submit"] {
    cursor: pointer;
    border: none;
    background: #005a98;
    color: #fff;
    padding: 0 15px;
}

img {
    max-width: 500px;
    max-height: 500px;
    border-radius: 5px;
    margin: 10px 0;
}

.note-toolbar {
    z-index: 8 !important;
}

.theme-color {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 500px;
    margin: auto;
    margin-top: 20px;
}

.theme-color div {
    height: 40px;
    width: 40px;
    border: #000 solid 1px;
    border-radius: 50px;
    cursor: pointer;
}

.theme-color div.blue {
    background-color: #005A98;
}

.theme-color div.red {
    background-color: #EB7878;
}

.theme-color div.green {
    background-color: #008923;
}

.theme-color div.yellow {
    background-color: #979747;
}

.theme-color div.grey {
    background-color: #a1a1a1;
}

.theme-color div.maroon {
    background-color: #3c0008; 
}

.topimg {
    height: 55px;
}

/* Alert */
.alert {
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    position: relative;
    padding-right: 2.25rem;
}

/* Alert Success */
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

/* Alert Block */
.alert-block {
    display: block;
}

/* Close Button */
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
    border: none;
    background: none;
    cursor: pointer;
}

.close:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.75;
}

.close:focus {
    outline: none;
}

/* Button Reset */
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

button.close span {
    display: inline-block;
}

  /* Dropdown Menu */
  .no-dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Header */
  .no-dropdown-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: #6c757d;
    white-space: nowrap;
  }
  
  /* Dropdown Item */
  .no-dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    text-decoration: none;
  }
  
  /* Flexbox Layout */
  .no-d-flex {
    display: flex !important;
  }
  
  .no-align-items-center {
    align-items: center !important;
  }
  
  /* Margin Right */
  .no-mr-3 {
    margin-right: 1rem !important;
  }
  
  /* Background Primary */
  .no-bg-primary {
    background-color: #525252 !important;
  }
  
  /* Text White */
  .no-text-white {
    color: #fff !important;
  }
  
  /* Text Small */
  .no-small {
    font-size: 80%;
  }
  
  /* Text Gray */
  .no-text-gray-500 {
    color: #6c757d !important;
  }
  
  /* Font Weight Bold */
  .no-font-weight-bold {
    font-weight: 700 !important;
  }
  
  /* Icon Circle */
  .no-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
.block-container {
    display: flex;
    justify-content: space-evenly;
    position: relative;
    margin-top: 130px;
}

.block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0 0 10px #00000033;
    width: 200px;
    height: 110px;
    padding: 10px 0;
    border-radius: 7px;
}

.block-heading {
    font-size: 23px;
    border-bottom: thin solid #444;
    width: 100%;
    text-align: center;
    padding-bottom: 7px;
}

.block-body {
    margin-top: 10px;
    font-size: 20px;
}