/* ---------- Tip Box: Green ---------- */
.tip-box-green {
  border-left: 6px solid #2ecc71;   /* Bright green accent */
  background: linear-gradient(90deg, #f9fff9 0%, #ffffff 100%);
  padding: 1em 1.2em;
  margin: 2em auto;
  max-width: 85%;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  font-size: 1.05em;
  line-height: 1.6;
  position: relative;
}

.tip-box-green::before {
  content: "💡";
  font-size: 1.6em;
  position: absolute;
  top: 0.6em;
  left: 0.6em;
}

.tip-box-green p {
  margin: 0.2em 0 0.2em 2em;
}

.tip-box-green a {
  color: #0077cc;
  font-weight: bold;
  text-decoration: none;
}

.tip-box-green a:hover {
  text-decoration: underline;
  color: #005599;
}



/* ---------- Tip Box: Blue ---------- */
.tip-box-blue {
  border: 1px solid #0077cc;
  background: #eaf5ff;
  padding: 1em 1.2em;
  border-radius: 10px;
  margin: 1.5em 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.tip-box-blue p:first-child {
  margin-top: 0;
  font-weight: bold;
  color: #004b80;
}

.tip-box-blue ul {
  margin: 0.5em 0 0.5em 1.2em;
}

.tip-box-blue details {
  margin-top: 0.8em;
  background: #f8fbff;
  border: 1px solid #bcdffb;
  border-radius: 8px;
  padding: 0.6em 1em;
}

.tip-box-blue summary {
  cursor: pointer;
  font-weight: bold;
  color: #004b80;
}

