body {
    background-color: #5a5a5a;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 20px 20px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      margin-bottom: 10px;
    }

    h1 {
      text-align: center;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }

    th, td {
      padding: 10px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }

    th {
      background-color: #f2f2f2;
    }

    .filterText {
      width: 30%;
      margin-bottom: 5px;
    }
    
    .login-form-class{
      display: flex;
      flex-direction: column;
      align-items: left;
      justify-content: left;
      width: 60%
    }
    
    .login-form-class input password{
      width: 60%
    }

    .onboardText {
      width: 50%;
    }
    /*
    input[type="text"]{
      width: 60%;
    }*/

    input[type="password"]{
      width: 60%;
    }

    .usernameclass {
      width: 60%;
    }

    .submit-btn {
      display: block;
      width: 100%;
      padding: 10px;
      margin-top: 20px;
      background-color: #ff5500;
      color: #fff;
      text-align: center;
      text-decoration: none;
      border-radius: 5px;
    }

    .find-btn {
      padding: 10px;
      margin-top: 20px;
      margin-left: 5px;
      background-color: #ff5500;
      color: #fff;
      text-align: center;
      text-decoration: none;
      border-radius: 5px;
    }

    .submit-btn:hover {
      background-color: #ff7733;
    }

    .checkmark-icon {
      color: orange;
    }

    .show {
      color: green;
      display: block;
    }

    .hide {
      display: none;
    }

    .sitesDropdown {
      width: 60%;
    }

    .snapsDropdown {
      width: 60%;
    }

    .filterDropdownCombo {
      display: flex;
      flex-direction: column;
    }
  /*
    .destinationConfiguration {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .destinationConfiguration .filterDropdownCombo {
      display: flex;
      width: 80%;
    }
    */

    .center-content {
      text-align: center;
      vertical-align: middle;
    }

  #toast-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
  }
  .toast {
      background-color: #333;
      color: white;
      padding: 10px 20px;
      border-radius: 4px;
      margin-top: 10px;
      animation: slideUp 0.5s ease, fadeOut 0.5s 8.5s ease forwards;
  }
  @keyframes slideUp {
      from {
          transform: translateY(100%);
      }
      to {
          transform: translateY(0);
      }
  }
  @keyframes fadeOut {
      from {
          opacity: 1;
      }
      to {
          opacity: 0;
      }
  }

.flex-box {
  display: flex;
  justify-content: space-between; 
}

.flex-child {
  margin: 5px; 
  flex-basis: 50%;
  box-sizing: border-box;
}
