@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

/* General Reveal.js styles */
.reveal {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  color: #222831;
  background: #f8f9fa;
}


.reveal .slides section:first-of-type h1 {
    font-size: 60px !important;  /* Adjust size */
    font-weight: bold !important;
    color: #0044cc !important;  /* Change color */
    text-align: center !important;
}




.reveal h1,
.reveal .slides h1 {
  font-size: 36pt !important;
  font-weight: 600 !important;
  color: #003366 !important;
  text-align: left !important;
}

.reveal h2,
.reveal .slides h2 {
  font-size: 32pt !important;
  font-weight: 600 !important;
  color: #0055aa !important;
  text-align: left !important;
}

.reveal h3,
.reveal .slides h3 {
  font-size: 24pt; /* Style for subheadings */
  font-weight: 500;
  color: #0066cc;
  text-align: left;
  margin-bottom: 6px;
}

/* Paragraphs */
.reveal p,
.reveal .slides p {
  font-size: 26pt;
  line-height: 1.6;
  color: #333;
}

/* Unordered Lists */
.reveal ul,
.reveal .slides ul {
  padding-left: 26px;
  font-size: 30pt;
  line-height: 1.5;
  color: #222831;
  list-style-type: disc; /* Default bullet style */
}

.reveal ul li {
  margin-bottom: 10px;
}

.reveal ul ul {
  padding-left: 20px;
  font-size: 18pt;
  color: #555;
  list-style-type: circle; /* Sub-bullet style */
}

.reveal ul ul li {
  margin-bottom: 8px;
}

/* Ordered Lists */
.reveal ol,
.reveal .slides ol {
  padding-left: 30px;
  font-size: 20pt;
  line-height: 1.5;
  color: #222831;
  list-style-type: decimal; /* Default number style */
}

.reveal ol li {
  margin-bottom: 10px;
}

.reveal ol ol {
  padding-left: 20px;
  font-size: 18pt;
  color: #555;
  list-style-type: lower-alpha; /* Sub-number style */
}

.reveal ol ol li {
  margin-bottom: 8px;
}

/* Blockquotes */
.reveal blockquote,
.reveal .slides blockquote {
  font-size: 18pt;
  font-style: italic;
  color: #444;
  padding: 10px;
  border-left: 3px solid #0055aa;
  background: #f9f9f9;
}

/* Tables */
.reveal table,
.reveal .slides table {
  max-width: 80%;
  font-size: 18pt;
  border-collapse: collapse;
  margin: 20px auto;
}

.reveal table th,
.reveal .slides table th {
  background: #0055aa;
  color: #fff;
  font-weight: 600;
  padding: 10px;
}

.reveal table td,
.reveal .slides table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

/* Buttons */
.reveal .button,
.reveal .slides .button {
  padding: 8px 16px;
  background: #0055aa;
  color: white;
  font-size: 16pt;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.reveal .button:hover,
.reveal .slides .button:hover {
  background: #0077cc;
}

/* Ensure the slides align to the top */
.reveal .slides {
  justify-content: flex-start !important; /* Align slides to the top */
  align-items: flex-start !important;    /* Ensure content is left-aligned as well */
  padding-top: 20px;                     /* Add some spacing from the top */
}

/* Adjust section styles for each slide */
.reveal .slides section {
  margin: 0 auto;
  width: 90%; /* Optional: control content width */
}
