.modal-usa-state-overlay {
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;

    background-color: rgba(0, 0, 0, 0.5);
}

.modal-usa-state-overlay * {
    box-sizing: border-box;
}

.modal-usa-state {  
    width: 100%;
    max-width: 920px;
    max-height: 100vh;
    padding: 32px 16px 16px;
    overflow-y: auto;
    color: #2e353a;
    border-radius: 6px;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.usa-modal-title {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}
.states-grid {
    column-count: 3;
    column-gap: 24px;
    margin-top: 40px;
}
.state-group {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    break-inside: avoid;
    margin-bottom: 16px;
}
.state-group h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
    margin: 0;
}
.state-list {
    list-style: none;
    display: flex;
    flex-flow: column nowrap;
    margin: 0;
    padding: 0;
}
.state-list li {
    display: flex;
    align-items: center;
    padding: 4px 8px;
}
.state-link {
    color: inherit;
    font-size: 13px;
    line-height: 17px;
    text-decoration: none;
}
.state-link:hover {
    color: #eb0607;
    text-decoration: underline;
}
@media (max-width: 768px) {
  .modal-usa-state {
    height: 100%;
    max-height: 100vh;
  }
  .states-grid {
    column-count: 2;
    margin-top: 24px;
  }
}
@media (max-width: 480px) {
  .modal-usa-state {
    padding: 32px 12px 12px;
  }
  .states-grid {
    column-count: 1;
  }
  .state-group {
    margin-bottom: 8px;
  }
  .state-list {
    flex-flow: row wrap;
  }
}