@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600;700&display=swap');

/* Markdown Content Styling */
.markdown-content {
  color: rgb(209 213 219);
  line-height: 1.625;
  text-align: left;
  /* font-family: 'Crimson Pro', Garamond, 'Hoefler Text', 'Times New Roman', serif; */
  /* font-family: Garamond, 'Hoefler Text', 'Times New Roman', serif; */
  font-family: 'EB Garamond', Garamond, 'Hoefler Text', 'Times New Roman', serif; 
  font-size: 1.125rem;  /* Increased from default (18px instead of 16px) */
}

.markdown-content p {
  margin-bottom: 1rem;
}

.markdown-content strong {
  color: rgb(243 244 246);
  font-weight: 700;
}

.markdown-content em {
  font-style: italic;
}

.markdown-content h2 {
  font-size: 1.75rem;  /* Increased from 1.5rem */
  font-weight: 700;
  color: rgb(243 244 246);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.markdown-content h3 {
  font-size: 1.5rem;  /* Increased from 1.25rem */
  font-weight: 700;
  color: rgb(243 244 246);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  text-align: left;
}

.markdown-content ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 1rem;
}

.markdown-content ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 1rem;
}

.markdown-content a {
  color: rgb(96 165 250);
  text-decoration: underline;
}

.markdown-content a:hover {
  color: rgb(147 197 253);
}

.markdown-content code {
  background-color: rgb(31 41 55);
  color: rgb(229 231 235);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-family: ui-monospace, monospace;
}

.markdown-content pre {
  background-color: rgb(31 41 55);
  color: rgb(229 231 235);
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin-bottom: 1rem;
}

.markdown-content blockquote {
  border-left-width: 4px;
  border-left-color: rgb(75 85 99);
  padding-left: 1rem;
  font-style: italic;
  color: rgb(156 163 175);
  margin: 1rem 0;
}


/* Admin form styling */
.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form input[type="date"],
.admin-form input[type="time"],
.admin-form textarea {
  background-color: white;
  color: #333;
  border: 1px solid #d1d5db;
}

.admin-form input[type="text"]:focus,
.admin-form input[type="email"]:focus,
.admin-form input[type="date"]:focus,
.admin-form input[type="time"]:focus,
.admin-form textarea:focus {
  outline: 2px solid #2563eb;
  outline-offset: 0;
}

.admin-form label {
  color: #333;
}
