.clubFilter_spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 3px solid #fff;
    width: 16px;
    height: 16px;
    animation: filterSpin 1s linear infinite;
    display: inline-block;
}

@keyframes filterSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.clubFilter_modalOverlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.clubFilter_modal {
  background: #fff;
  padding: 0;
  border-radius: 16px;
  width: 500px;
  max-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

.clubFilter_modalHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.clubFilter_modalHeader--title {
    font-size: 18px;
}

.clubFilter_modalClose {
  cursor: pointer;
  font-size: 38px;
  position: absolute;
  top: 10px;
  right: 16px;
}

.clubFilter_modalContent {
    overflow-y: auto;
    padding: 0 20px;
}

.clubFilter_group {
  margin: 15px 0;
}

.clubFilter_groupTitle {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: bold;
  display: block;
}

.clubFilter_options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.clubFilter_option {
  padding: 6px 12px;
  font-size: 15px;
  border: 1px solid #6922c7;
  color: #6922c7;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clubFilter_option:hover {
  background: #ecddff;
}

.clubFilter_option.clubFilter_selected {
  background: #6922c7;
  color: #fff;
  border-color: #6922c7;
}

.clubFilter_modalFooter {
  margin-top: 0;
  text-align: right;
  padding: 20px;
  border-top: 1px solid #eee;
}

.clubFilter_resetBtn {
  display: block;
  text-align: center;
  background: #fff;
  border: none;
  cursor: pointer;
  margin-bottom: 15px;
  color: #6922c7;
  font-weight: 500;
}

.clubFilter_filterBtn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.clubFilter_filterBtn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  background: #6922c7;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

.clubFilter_resultsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 3em;
}
@media screen and (max-width: 480px) {
  .clubFilter_resultsGrid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

.clubFilter_preButtons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 480px) {
  .clubFilter_preButtons {
    flex-direction: column;
    align-items: stretch;
  }
}

.clubFilter_searchWrapper {
  position: relative;
  flex-grow: 1;
}

.clubFilter_search {
  border-radius: 32px !important;
  padding: 15px 45px 15px 20px !important; /* Ajustado padding-right para o ícone */
  border: none !important;
  width: 100%; /* Ocupa a largura total do wrapper */
}

.clubFilter_search::placeholder {
  color: #444444;
}

.clubFilter_searchIcon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; 
  height: 20px; 
  fill: #444444; 
}

.clubFilter_filterOpen {
  padding: 15px 20px !important;
  border: none !important;
  border-radius: 32px !important;
  background: #6922c7 !important;
  color: #fff !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.clubFilter_filterOpen:hover {
  background: #5a1da8;
}