/* ================================
   TMSB No Results Message + Button
   ================================ */

.facetwp-template .tmsb-no-results{
  grid-column: 1 / -1;
  width: 100%;
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.facetwp-template .tmsb-no-results h3{
  margin: 0 0 12px;
}

.facetwp-template .tmsb-no-results p{
  margin: 0;
  max-width: 520px;
}

.facetwp-template .tmsb-no-results .tmsb-clear-filters{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 42px;
  padding: 0 18px;
  margin-top: 16px;
  background: #0a2a43;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.facetwp-template .tmsb-no-results .tmsb-clear-filters:hover{
  background: #133b5f;
  transform: translateY(-1px);
}

.facetwp-template .tmsb-no-results .tmsb-clear-filters:active{
  transform: translateY(0);
}

.facetwp-template .tmsb-no-results .tmsb-clear-filters:focus{
  outline: none;
}

@media (max-width: 767px){
  .facetwp-template .tmsb-no-results{
    margin-top: 20px;
    padding: 0 10px;
  }

  .facetwp-template .tmsb-no-results .tmsb-clear-filters{
    width: 100%;
    max-width: 280px;
  }
}