/* Increase specificity by specifying a more detailed selector */
body .reveal .slides > h1 {
    color: #ba1313;
}


img.image-border {
    border: 2px solid black; /* Adjust thickness and color as needed */
    border-radius: 5px; /* Optional: for rounded corners */
  }
  
.small {
    font-size: 0.6em;
}

.reveal h1 {
    /*thin typewriter font*/
    font-family: 'Courier New', Courier, monospace;
    font-size:larger;
    /*medium weight*/
    font-weight:100;
}

.reveal h2 {
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 40px; /* Adjust the value as needed */
    color: #ba1313; /* Change the color value as needed */
    font-weight: 600; /* Adjust the value as needed */
}

.reveal h3 {
    color: #ba1313; /* Change the color value as needed */
}

.clickable {
    cursor: pointer;
}

.callout {
    width: 7cm;
    height: 4cm;
    border: 2px solid #000; /* Customize border as needed */
    background-color: #f5f5f5; /* Light background color */
    padding: 10px;
    position: absolute;
    top: 20%; /* Adjust these values to control placement */
    left: 30%; /* Adjust these values to control placement */
    font-size: 1em;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
  }

/* First level list items */
ul > li, ol > li {
    font-size: x-large;
}

/* Second level nested list items */
ul ul > li, ol ol > li {
    font-size: large;
}

/* Third level nested list items */
ul ul ul > li, ol ol ol > li {
    font-size: medium;
}

/* Continue for deeper levels if needed */
ul ul ul ul > li, ol ol ol ol > li {
    font-size: small;
}

figcaption {
    font-style: italic;
    padding-left: 1em;
}

figure .grayfigure {
    background-color: gray;
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* figcaption {
    font-size: 0.8em;
    text-align: center;
} */

.margin-top-20 {
    margin-top: 20px;
}

.gray-border {
    border: 2px solid gray;
    padding: 10px;
}

/* Toast Container */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

/* Toast Message */
.toast-message {
    background-color: #333;
    color: white;
    padding: 16px;
    margin-top: 5px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.5s;
}

/* Make the toast message visible */
.toast-show {
    opacity: 1;
    transition: opacity 0.5s;
}

.centered-xxl-text {
    font-size: 64px;
    text-align: center;
    font-weight: bold;
  }

.centered-xxl-rounded-button {
    font-size: 64px;
    text-align: center;
    font-weight: bold;
    border-radius: 12px;
    padding: 12px;
    background-color: #444;
    color: white;
    display: block; 
    margin-left: auto; 
    margin-right: auto;
    cursor: pointer;
  }

  table {
   font-size: large
  }

  .red {
    color: #ba1313;
  }

  .green {
    color: #13ba5b;
  }

  .blue {
    color: #1364ba;;
  }

  