:root{
  --ssred :#ff3f3f;
}

body {
    font-family: 'AMBILE' !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:      "wdth" 100;
    font-size: 1.4em;
    line-height:1.6em;
    position: relative;
}

  .navborder {
      border-bottom: 1px solid rgba(0, 0, 0, 0.2);
      margin-bottom: 20px;
      box-sizing: border-box;
  }


  .title{
    color:var(--ssred);
  }

  hr {

    border: 1px solid var(--ssred);
  }


  .navbar-link:not(.is-arrowless):after {
    border-color: var(--bulma-navbar-dropdown-arrow);
    inset-inline-end: 1.125em;
    margin-top: -.375em
}


  .navbar-burger span {

background-color: var(--ssred);

  }


  .navbar-link:not(.is-arrowless):after {
    border-color: var(--ssred);
}

a {
    color:var(--ssred);
}



#progress-bar {
  position: fixed;
  top: 2px; /* Adjust this value according to your header's height */
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--ssred); /* Green */
  z-index: 9999;
}



#scroll-to-top-btn {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  background-color: var(--ssred);
  color: #fff;
  font-size: 24px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

#scroll-to-top-btn:hover {
  background-color: var(--ssred);
}

/* Additional styles can be added as needed */

.search-container {
    border-radius: 5px;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .optional-fields {
    margin-top: 1rem; /* Space between search box and optional fields */
    display: none; /* Hide optional fields by default */
  }
  .optional-fields.is-visible {
    display: block; /* Show optional fields when toggled */
  }
