/* GuideFilter Modal Styles */
.guide-filter-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.guide-filter-modal-box {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  min-width: 320px;
  max-width: 400px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-filter-modal-box h2 {
  margin-top: 0;
}

.guide-filter-modal-box label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  margin-bottom: 8px;
}

.guide-filter-modal-box select {
  margin-top: 4px;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.guide-filter-modal-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: flex-end;
}

.guide-filter-modal-actions button[type="submit"] {
  background: #065e76;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 18px;
  font-weight: 600;
  cursor: pointer;
}

.guide-filter-modal-actions button[type="button"] {
  background: #eee;
  color: #222;
  border: none;
  border-radius: 4px;
  padding: 8px 18px;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 600px) {
  .guide-filter-modal-box {
    min-width: 90vw;
    max-width: 98vw;
    padding: 16px;
  }
  .guide-filter-modal-box label {
    font-size: 1rem;
  }
  .guide-filter-modal-box select {
    font-size: 1rem;
  }
}
