/* Simple modal for fit-ai (experimental) */
.fit-modal-open {
  margin-top: 8px;
  padding: 6px 10px;
  background: #ffd54f;
  border: none;
  border-radius: 6px;
  color: #2b2b2b;
  font-weight: 600;
  cursor: pointer;
}

.fit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.fit-modal-overlay.open {
  display: flex;
}

.fit-modal {
  background: #fff;
  border-radius: 8px;
  max-width: 640px;
  width: 94%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  padding: 20px 22px;
}

.fit-modal h2 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}

.fit-modal p {
  margin: 0 0 12px 0;
  color: #333;
}

.fit-modal .close-btn {
  margin-top: 12px;
  padding: 8px 12px;
  background: #eee;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.fit-modal .close-btn.primary {
  background: #ffd54f;
  font-weight: 600;
}
