.state-breadcrumb-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 1rem 0;
    margin-bottom: 5px;
    /* margin-left: 4vw; */
  }
  .state-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 4px;
    max-width: 50%;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.3s ease;
    text-align: center;
  }
  .state-item.validated {
    opacity: 1;
    /* box-shadow: 0 0 3px 2px rgba(0, 255, 0, 0.3); */
  }
  .state-item.unvalidated {
    opacity: 0.3;
    box-shadow: none;
  }
  .validation-icon {
    margin-right: 5px;
    display: none;
  }
  .state-item.validated .validation-icon {
    display: inline-block;
  }
  .state-label-full {
    display: inline;
  }
  .state-label-short {
    display: none;
  }
  .chevron {
    margin: 0 5px;
    font-size: 0.8em;
    color: #555;
  }
  @media (max-width: 1000px) {
    .state-label-full {
      display: none;
    }
    .state-label-short {
      display: inline;
    }
  }
