/* ===== Global ===== */
* {
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
  background-color: #0f172a; /* dark navy */
  color: #e5e7eb; /* light text */
  padding: 30px;
  max-width: 900px;
  margin: auto;
}

/* ===== Headings ===== */
h1 {
  text-align: center;
  color: #38bdf8; /* cyber blue */
  margin-bottom: 10px;
}

h2 {
  color: #22d3ee;
  border-left: 4px solid #22d3ee;
  padding-left: 10px;
  margin-top: 30px;
}

h3 {
  color: #a5f3fc;
  margin-top: 20px;
}

/* ===== Inputs ===== */
input[type="text"] {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border-radius: 6px;
  border: none;
  background: #020617;
  color: #e5e7eb;
  font-size: 14px;
}

input[type="text"]::placeholder {
  color: #64748b;
}

/* ===== Buttons ===== */
button {
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  color: #020617;
  border: none;
  padding: 10px 16px;
  margin: 5px 5px 5px 0;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.6);
}

/* ===== Checkbox Sections ===== */
label {
  display: block;
  background: #020617;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 6px;
  cursor: pointer;
  border-left: 3px solid transparent;
}

label:hover {
  border-left: 3px solid #38bdf8;
  background-color: #020617;
}

input[type="checkbox"] {
  margin-right: 8px;
}

/* ===== Warning ===== */
#warning {
  background-color: #7f1d1d;
  color: #fecaca;
  padding: 10px;
  border-radius: 6px;
  margin: 15px 0;
}

/* ===== Output ===== */
pre {
  background: #020617;
  padding: 15px;
  border-radius: 6px;
  overflow-x: auto;
  color: #22d3ee;
  font-size: 14px;
}

/* ===== Explanation ===== */
#explanation {
  background: #020617;
  padding: 15px;
  border-radius: 6px;
  list-style: disc;
}

#explanation li {
  margin-bottom: 8px;
  color: #e5e7eb;
}


/* ===== Divider ===== */
hr {
  border: none;
  border-top: 1px solid #1e293b;
  margin: 25px 0;
}
button:disabled {
  background: #334155;
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
}
.disclaimer {
  background: #2b0000;
  color: #ffdada;
  border: 1px solid #ff4d4d;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  border-radius: 6px;
}

.disclaimer input {
  margin-right: 6px;
}
.risk-box {
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
}

.risk-low {
  background: #0f2e1b;
  color: #7CFFB2;
}

.risk-medium {
  background: #332b00;
  color: #ffe27a;
}

.risk-high {
  background: #3a0f0f;
  color: #ff8a8a;
}
#manualSection[aria-hidden="true"] {
  display: none !important;
}
/* ===============================
   FORCE MANUAL MODE VISIBILITY CONTROL
   =============================== */

#manualSection.hidden {
  display: none !important;
}
#recommendationBox {
  background: #020617;
  border-left: 4px solid #22d3ee;
  padding: 12px;
  border-radius: 6px;
  margin-top: 15px;
}

#recommendationBox ul {
  list-style: disc;
  padding-left: 20px;
}

#recommendationBox li {
  margin-bottom: 6px;
  color: #e5e7eb;
}
.mentor-box {
  background: #020617;
  border-left: 4px solid #38bdf8;
  padding: 15px;
  margin-top: 15px;
  border-radius: 6px;
  color: #e5e7eb;
}
