body {
    background-color: rgba(216, 235, 235, 0.685);
    background-blend-mode: luminosity;
    background-image: linear-gradient(to bottom, rgb(255, 255, 255), #99cbfd);
    font-family: Gibson,Tahoma,Arial,sans-serif;

  }

  .section {
    padding: 7rem 0;
  }

  /*---------------------------------------
     generale             
  -----------------------------------------*/

  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  a {
    color: #468ace;
    font-weight: normal;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  a:hover, 
  a:active, 
  a:focus {
    color: #468ace;
    outline: none;
    text-decoration: none;
  }

  .form-control {
    max-width: 170px;
    min-width: 170px;
  }

  .center-select {
    display: block;
    margin: 0 auto;
    margin-top: 10px;
  }

  .btn-secondary {
    margin-top: 10px;
    text-align: justify;
  }

  .btn-secondary:hover {
    background-color: #468ace;
    color: white;
  }

  button.form-control.center-select:hover {
    background-color: #468ace;
    color: white;
  }

  button[type="submit"].form-control.center-select:hover {
    background-color: #468ace;
    color: white;
  }

  .btn-primary:hover {
    background-color: #468ace;
    color: white;
  }

  .form-box {
    background-color: #28292b;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Distribute items horizontally */
    max-width: 780px; /* Match the width of col-lg-6 */
    margin-left: auto;
    margin-right: auto;
    box-shadow : 0 0 15px rgba(0, 0, 0, 0.5);
  }

  .form-box label {
    color: white;
    margin-right: 10px;
    font-size: 16px;
  }

  .form-box select {
    background-color: white;
    color: black;
    border: none;
    border-radius: 5px;
    padding: 5px;
    height: 35px;
    margin-right: 10px;
  }

  .form-box button {
    background-color: white;
    color: #468ace;
    border: none;
    border-radius: 5px;
    padding: 5px 15px;
    transition: all 0.3s ease;
    margin-top: -2px; /* Slightly raise the button */
  }

  .form-box button:hover {
    background-color: #a3a3a3;
    color: white;
  }
  
  .stato-img {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 160px;
    height: 40px;
    z-index: 1000;
}

  /*---------------------------------------
     sezione responsive            
  -----------------------------------------*/

  @media (max-width: 1000px){
    .section {
      padding: 5rem 0;
    }

    .form-control {
      height: calc(2rem);
      max-width: 170px;
      min-width: 170px;
    }

    .center-select {
      display: block;
      margin: 0 auto;
      margin-top: 10px;
    }
    .stato-img {
      position: absolute;
      top: 5px;
      right: 5px;
      width: 160px;
      height: 40px;
      z-index: 1000;
    }
  }
  
  
  
  @media screen and (max-width: 992px) {

    .form-control {
      height: calc(2rem);
      max-width: 100px;
      min-width: 100px;
    }

    .center-select {
      display: block;
      margin: 0 auto;
      margin-top: 10px;
    }
    .stato-img {
      position: absolute;
      top: 5px;
      right: 5px;
      width: 150px;
      height: 40px;
      z-index: 1000;
    }
  }

@media screen and (max-width: 768px) {

  .form-control {
    height: calc(2rem);
    max-width: 170px;
    min-width: 170px;
  }

  .center-select {
    display: block;
    margin: 0 auto;
    margin-top: 10px;
  }

  .form-box {
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Center items horizontally */
  }

  .form-box select,
  .form-box button {
    margin-bottom: 10px; /* Add spacing between elements */
    width: 100%; /* Make elements take full width */
  }

  .stato-img {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 150px;
    height: 40px;
    z-index: 1000;
  }
}

.text-center label[for="sortBy"] {
    text-align: center;
}