.is-good { color: green; }
/* .is-warning { color: orange; } */
.is-bad { color: red; }

/*-- TECH SUPPORT --*/
.autocomplete-suggestions {
  border: 1px solid #dbdbdb;
  max-height: 200px;
  overflow-y: auto;
  background-color: white;
  position: absolute;
  width: calc(100% - 2.5rem); /* Match input width */
  margin-top: 0.25rem; /* Add spacing from input */
  z-index: 1000;
  box-shadow: 0 2px 3px rgba(10,10,10,.1); /* Add subtle shadow */
}
.autocomplete-suggestion {
    padding: 0.5rem;
    cursor: pointer;
}
.autocomplete-suggestion:hover {
    background-color: #f5f5f5;
}
div[hx-target="#customer-data"] {
    cursor: pointer;
}
.spinner {
    width: 24px;
    height: 24px;
    border: 4px solid #ccc;
    border-top-color: #00d1b2; /* Bulma's primary color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

.htmx-indicator {
    opacity: 0;
    transition: opacity 200ms ease-in;
}
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
    opacity: 1;
}

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

/*-- ONBOARDING --*/
#tc-survey {
    position: sticky;
    top: 10px;
    align-self: flex-start
}
#form-body>.column, #billing-fields, #mac-result {
    border: 1px solid #626262;
    padding: 20px;
    border-radius: 5px;
}
#form-body div.fillCol {
    border: none;
    border-radius: 0;
}
#notifications {
    top: 20px;
    right: 20px;
    position: fixed;
}
#notifications .notification {
    padding-right: 50px;
}
#no-peeking {
    top: 20px;
    left: 20px;
    background: #ff0000;
    position: fixed;
}
form#mac_result div.columns {
    border: 1px solid #353a46;
    border-radius: 10px;
    margin-bottom: 22px;
}

 /* Dashboard */
  /* Custom Sidebar Styles */
aside {
  padding: 1.5rem;
}
aside .menu-label {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
aside .menu-list li a {
  padding: 0.75rem 1rem;
  display: block;
  color: #4a4a4a;
  text-decoration: none;
}
aside .menu-list li a:hover {
  background-color: #f5f5f5;
  color: #3273dc;
}