/* MCP Training Course - Minimal Custom Styles */

/* Instructor Box */
.instructor-box {
  background-color: #f0f9ff;
  border: 1px solid #0ea5e9;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

/* Keyboard Shortcuts */
.keyboard-shortcut {
  background-color: #374151;
  color: #f9fafb;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 30px;
}

/* Try It Boxes */
.try-it {
  background-color: #ecfdf5;
  border-left: 4px solid #10b981;
  padding: 15px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

/* Prompt Cards */
.prompt-card {
  background-color: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}

/* Dark mode support */
[data-bs-theme="dark"] .instructor-box {
  background-color: #1e3a5f;
  border-color: #3b82f6;
  color: white;
}

[data-bs-theme="dark"] .try-it {
  background-color: #064e3b;
  color: white;
}

[data-bs-theme="dark"] .prompt-card {
  background-color: #78350f;
  border-color: #d97706;
  color: white;
}
