
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Poppins:wght@500;600&display=swap');


.navbar {
   font-size: 16px;
   font-weight: 400;
}

.navbar-brand {
  /* font-size: 12px; */
  font-weight: 500;
  padding-left: 5px;
  
}

.breadCrumb_ {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

.title {
  font-size: 40px;
  font-weight: 500;
  margin-left: 20px;
}

body {
  /* font: 14px 'Roboto', 'Lucida Grande', Helvetica, Arial, sans-serif; */
  font-family: "Geist", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  background-color: #F7F7F7;
  
  /* Enable below for geometry design */
  /* background: radial-gradient(circle, transparent 20%, #F7F7F7 20%, #F7F7F7 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, #F7F7F7 20%, #F7F7F7 80%, transparent 80%, transparent) 100px 100px, linear-gradient(#ffffff 8px, transparent 8px) 0 -4px, linear-gradient(90deg, #ffffff 8px, #F7F7F7 8px) -4px 0;
  background-size: 200px 200px, 200px 200px, 100px 100px, 100px 100px; */
}

.body-container {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 5px;
  padding-bottom: 20px
}


a {
  color: #00B7FF;
}


#myTableContainer {
    margin-top: 50px
}

table.dataTable>thead>tr>th, table.dataTable>thead>tr>td {
  text-align: center;
  vertical-align: middle;
}

table.dataTable>tbody>tr>td {
  text-align: center;
  vertical-align: middle;
}

.dataTables_length {
  margin-bottom: 20px;
}

footer {
   width: 100%;
   text-align: center;
}

.select2-selection__rendered {
    line-height: 39px !important;
}
.select2-container .select2-selection--single {
    height: 39px !important;
}
.select2-selection__arrow {
    height: 39px !important;
}

/* pulse box code */
.pulse-text {
  display: inline-block;
  margin: 2px;
  padding: 2px 5px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 12px;
  color: white;
  background-color: var(--pulse-color, #333);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--pulse-color, rgba(0, 0, 0, 0.7));
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
