/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  min-height: 100vh;
  padding: 20px;
  color: #333;
} */

.container {
  max-width: 800px;
  margin: 0 auto;
}

.header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px 20px !important;
  background: linear-gradient(219deg, #FB0E76 0%, #910694 100%);
  border-radius: 16px !important;
  color: white !important;
  box-shadow: 0 10px 30px rgba(251, 14, 118, 0.3);
}

.header h1 {
  font-size: 2.5rem !important;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
	color:white !important;
}

.header h1 i {
  font-size: 2.2rem !important;
	color:white !important;
}

.subtitle {
  font-size: 1.1rem !important;
  opacity: 0.95;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

.controls {
  background: #f8f9fa !important;
  border-radius: 12px !important;
  padding: 25px !important;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.input-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.input-group label {
  font-weight: 600;
  color: #444;
  font-size: 1rem;
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-wrapper input {
  width: 80px;
  padding: 10px 14px !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px !important;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.input-wrapper input:focus {
  outline: none !important;
  border-color: #FB0E76;
  box-shadow: 0 0 0 3px rgba(251, 14, 118, 0.15);
}

.input-hint {
  color: #888;
  font-size: 0.9rem;
}

.generate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 30px !important;
  background: linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(251, 14, 118, 0.35);
}

.generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 14, 118, 0.45);
}

.generate-btn:active {
  transform: translateY(0);
}

.generate-btn i {
  font-size: 1.2rem;
}

.questions-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.question-card {
  background: white;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-left: 5px solid;
  border-image: linear-gradient(180deg, #FB0E76, #910694) 1;
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.question-number {
  background: linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;
  color: white !important;
  width: 36px;
  height: 36px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.question-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #333;
}

.copy-btn {
  background: #f0f0f0 !important;
  border: none !important;
  padding: 10px 16px !important;
  border-radius: 8px !important;
  cursor: pointer;
  color: #666 !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem !important;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: linear-gradient(219deg, #FB0E76 0%, #910694 100%);
  color: white;
}

.copy-btn i {
  font-size: 1rem;
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #333;
  color: white;
  padding: 14px 28px !important;
  border-radius: 10px !important;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast i {
  color: #4CAF50 !important;
  font-size: 1.2rem;
}

.empty-state {
  text-align: center;
  padding: 50px 20px;
  color: #888;
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ddd;
}

.empty-state p {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 600px) {
/*   body {
    padding: 15px;
  } */

  .header {
    padding: 25px 15px;
    margin-bottom: 25px;
  }

  .header h1 {
    font-size: 1.6rem !important;
    flex-direction: column;
    gap: 8px;
  }

  .header h1 i {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .controls {
    padding: 15px !important;
  }

  .input-group {
    flex-direction: column;
    gap: 10px;
  }

  .input-wrapper input {
    width: 100px;
  }

  .generate-btn {
    padding: 14px 20px !important;
    font-size: 10px !important;
  }

  .question-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    gap: 12px;
  }

  .question-card > div:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .question-text {
    width: 100%;
  }

  .copy-btn {
    align-self: flex-end;
  }
}

@media (max-width: 400px) {
  .header h1 {
    font-size: 1.4rem;
  }

  .generate-btn {
    font-size: 0.95rem;
  }
}
