@font-face {
    font-family: 'Figtree';
    src: url('/static/fonts/Figtree-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Figtree';
    src: url('/static/fonts/Figtree-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

body {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
}

main {
    padding-top: 8rem !important;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: currentColor; /* takes from element's color */
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1.5s infinite;
  opacity: 0.7;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.footer {
    box-shadow: 0 0 10px 0 rgba(0, 0, 15, 0.1);
    width: 100%;
    padding: 5px;
    font-size: 11px;
    text-align: center;
    background-color: #E5EDF2 !important;
}

.light-blue {
    color: #E5EDF2;
}

.dark-blue {
    color: #34495E;
}

.normal-blue {
    color: #3498DB;
}

.light-blue-background {
    background-color: #E5EDF2;
}

.dark-blue-background {
    background-color: #34495E;
}

.normal-blue-background {
    background-color: #3498DB;
}

.navbar {
    box-shadow: 0 0 10px 0 rgba(0, 0, 15, 0.1);
    background-color: #E5EDF2 !important;
}

.search-container {
    width: 70%;
    margin: 50px auto;
}

.search-input {
    border-radius: 50px;
    padding-left: 16.1px;
    font-size: 1.2rem;
    width: 100%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 15, 0.1);
}

.search-button {
    border-radius: 50px;
    font-size: 1.2rem;
    width: 15%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 15, 0.1);
    align-self: center;
}

.help-text {
    color: #34495E; /* Using the existing dark-blue color */
    font-style: italic;
}

.btn-std-width {
    width: 150px !important;
}

.btn-table-width {
    width: 85px !important;
}

.btn-table-width-double {
    width: 178px !important; /* Approximately double the btn-table-width plus gap */
}