/* 🌟 Fit Checker Form Styles */

.fc-form {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  margin: 30px auto;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.fc-form label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: #333;
}

.fc-form input,
.fc-form select {
  width: 100%;
  padding: 10px;
  margin-top: 4px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 14px;
  box-sizing: border-box;
}

.fc-form button {
  background-color: #1ba3b6;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.fc-form button:hover {
  background-color: #158997;
}

#fc-result {
  margin-top: 20px;
  background-color: #f8f8f8;
  padding: 15px;
  border-left: 4px solid #1ba3b6;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
}

/* 🔥 Live Preview Zones */

#fc-preview {
  margin-top: 30px;
  text-align: center;
}

.body-diagram {
  display: inline-block;
  position: relative;
  width: 120px;
  height: 260px;
  background: linear-gradient(to bottom, #f2f2f2 0%, #ccc 100%);
  border-radius: 60px;
  margin: auto;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.zone {
  position: absolute;
  left: 10px;
  right: 10px;
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  border-radius: 6px;
  padding: 4px;
  opacity: 0.9;
  pointer-events: none;
}

.chest-zone {
  top: 30px;
  height: 40px;
}

.waist-zone {
  top: 90px;
  height: 40px;
}

.hips-zone {
  top: 150px;
  height: 40px;
}

/* Fit zone colors */
.fit-tight {
  background-color: #e74c3c; /* red */
}

.fit-loose {
  background-color: #f1c40f; /* yellow */
}

.fit-good {
  background-color: #2ecc71; /* green */
}

/* 📱 Responsive */

@media (max-width: 600px) {
  .fc-form {
    padding: 15px;
    font-size: 15px;
  }

  .body-diagram {
    width: 100px;
    height: 220px;
  }

  .zone {
    font-size: 11px;
    padding: 3px;
  }
}
