@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Roboto:wght@500&display=swap');

#crazy_coder-nutrition-wrapper {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle, #6F79FF 0%, #ffffff 85%);
  padding: 40px 15px;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
}

.crazy_coder-container {
  background: rgba(255,255,255,0.25);
  border: 1.5px solid rgba(111,121,255,0.35);
  border-radius: 24px;
  box-shadow: 0 0 35px rgba(111,121,255,0.35);
  padding: 36px 28px;
  width: 100%;
  max-width: 950px;
  text-align: center;
}

.crazy_coder-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

.crazy_coder-subtitle {
  color: #555;
  margin-bottom: 25px;
}

.crazy_coder-section-title {
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin: 14px 0 8px;
  border-left: 4px solid #6F79FF;
  padding-left: 8px;
}

.crazy_coder-input,
.crazy_coder-select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(111,121,255,0.4);
  background: rgba(255,255,255,0.9);
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.25s ease;
}

.crazy_coder-input:focus,
.crazy_coder-select:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(111,121,255,0.5);
}

.crazy_coder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.crazy_coder-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.crazy_coder-btn,
.crazy_coder-btn-outline {
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.crazy_coder-btn {
  background: linear-gradient(135deg, #6F79FF, #B4B8FF);
  color: white;
  border: none;
  box-shadow: 0 0 14px rgba(111,121,255,0.4);
}

.crazy_coder-btn:hover {
  transform: scale(1.05);
}

.crazy_coder-btn-outline {
  background: transparent;
  border: 2px solid #6F79FF;
  color: #6F79FF;
}

.crazy_coder-btn-outline:hover {
  background: #6F79FF;
  color: white;
}

.crazy_coder-preview {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

#crazy_coder-nutrition-canvas {
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(111,121,255,0.4);
  background: white;
  max-width: 100%;
  height: auto;
}
