@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

#crazy_coder-schedule-wrapper {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #6F79FF 0%, #FAFAFA 55%, #FAFAFA 100%);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
}

.crazy_coder-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 26px;
  border: 1.5px solid rgba(111, 121, 255, 0.35);
  box-shadow: 0 18px 45px rgba(111, 121, 255, 0.35);
  padding: 34px 28px 30px;
  width: 100%;
  max-width: 980px;
  text-align: center;
}

.crazy_coder-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.crazy_coder-subtitle {
  color: #555;
  margin-bottom: 22px;
}

.crazy_coder-section-title {
  text-align: left;
  font-size: 1.06rem;
  font-weight: 600;
  color: #222;
  margin: 16px 0 9px;
  border-left: 4px solid #6F79FF;
  padding-left: 8px;
}

.crazy_coder-input,
.crazy_coder-select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(111,121,255,0.4);
  background: rgba(255,255,255,0.97);
  font-size: 0.98rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.crazy_coder-input:focus,
.crazy_coder-select:focus {
  outline: none;
  border-color: #6F79FF;
  box-shadow: 0 0 9px rgba(111,121,255,0.6);
}

.crazy_coder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
}

.crazy_coder-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.crazy_coder-btn,
.crazy_coder-btn-outline {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.crazy_coder-btn {
  background: linear-gradient(135deg, #6F79FF, #A4ABFF);
  color: #fff;
  border: none;
  box-shadow: 0 10px 22px rgba(111,121,255,0.45);
}

.crazy_coder-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(111,121,255,0.55);
}

.crazy_coder-btn-outline {
  background: rgba(255,255,255,0.85);
  border: 1.7px solid #6F79FF;
  color: #3840b8;
}

.crazy_coder-btn-outline:hover {
  background: #6F79FF;
  color: #fff;
  box-shadow: 0 10px 22px rgba(111,121,255,0.4);
}

.crazy_coder-output {
  background: #ffffff;
  padding: 20px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(111,121,255,0.18);
  width: 100%;
  max-width: 880px;
  text-align: left;
  font-size: 0.96rem;
  line-height: 1.5;
  color: #222;
  margin: 22px auto 0;
  min-height: 80px;
  box-sizing: border-box;
  white-space: pre-line;
}

.crazy_coder-grid label {
  font-size: 0.9rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}
