.reveal {
  font-family: 'Arial', sans-serif;
  color: black;
}

.reveal .slides {
  text-align: left;
/*   overflow-x: hidden; /* Disable horizontal scrolling */
/*   overflow-y: auto;   /* Enable vertical scrolling */

}

.title-box {
  background-color: #3333CC;
  color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 3px 3px 5px #888888;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.title-box h1 {
  margin: 0;
}

.title-box h2 {
  margin: 0;
  font-size: 1.2em;
}


.reveal h1 {
  background-color: #3333CC;
   font-size: 1.35em;
  color: white;
  padding: 17px;
  border-radius: 5px;
  box-shadow: 3px 3px 5px #888888;
  display: inline-block;
}




.reveal h2 {
  background-color: #3333CC;
  color: white;
  padding: 15px;
  font-size: 1.25em;
  border-radius: 5px;
  box-shadow: 3px 3px 5px #888888;
  width: 95%;
  display: block;
  text-align: left;
  padding-left: 30px;
}



.reveal h3 {
  font-size: 1.5em;
  margin-top: 0.5em;
}

.reveal h4 {
  font-size: 1.25em;
  margin-top: 0.5em;
}

.author-info {
  font-size: 1.2em;
  margin-top: 1em;
}


.reveal .footer a {
  color: white;
  text-decoration: none;
}

.reveal .footer a:hover {
  text-decoration: underline;
}

.normal-text {
  font-size: 1.2em;
  line-height: 1.5;
  color: black;
}

.r-stretch {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}



/* Styling unordered lists */
ul {
  padding-left: 40px; /* Indent the entire list from the left */
}

/* Styling ordered lists */
ol {
  padding-left: 40px; /* Indent the entire list from the left */
}

/* Additional customization for list items */
li {
  margin-bottom: 10px; /* Add space between list items */
  padding-left: 20px; /* Indent each list item further if desired */
}

.reveal .slide-number {
  font-size: 2em;
  color: white;

}

/* Bottom bar  */
.reveal div.footer {
    background-color: #3333CC;
    display: inline-block ;
    justify-content: space-between;
    align-items: center;
    margin: 0;   /* Remove content */
    padding: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5em; /* Adjust height as needed */
    color: white;
    text-align: center;
    line-height: 50px; /* Align text vertically */
    z-index: 1;
}


/* Modify progress bar color */
.reveal .progress {
    color: red;
}


.reveal .slides section:first-of-type::after {
    content: "";
    position: absolute;
    top: -200px; /* Adjust the distance from the top */
    right: 10px; /* Adjust the distance from the right */
    background-image: url('ICDI_logo.png'); /* Path to your image */
    background-size: contain; /* Adjust size if needed */
    background-repeat: no-repeat;
    width: 400px; /* Adjust width */
    height: 300px; /* Adjust height */
    z-index: 100;
}


.reveal .slides section:first-of-type::before {
    content: "";
    position: absolute;
    top: -170px; /* Adjust the distance from the top */
    left: 0px; /* Adjust the distance from the right */
    background-image: url('CEE.png'); /* Path to your image */
    background-size: contain; /* Adjust size if needed */
    background-repeat: no-repeat;
    width: 150px; /* Adjust width */
    height: 150px; /* Adjust height */
    z-index: 100;
}



.reveal {
    background-color: #FFFFFF; /* Set your desired background color */
}


/* Customize the background color of callouts */
.callout {
    background-color: #F0F4F8; /* Set your desired background color */
    width: 95%;               /* Set the width to 95% */
    margin: 0 auto;            /* Center the callout horizontally */
  
}

.blue {
    color: #3333CC;
}

.red {
    color: #cc3333;
}

.green {
    color: #33cc33;
}

.purple {
    color: #8033cc;
}

.blue1 {
    color: #3380cc;
}

/* Change bullet list color */
ul li::marker {
  color: #8033cc; /* Change the color to any desired value */
}

ol li::marker {
  color: #cc3333; /* This is for ordered lists, optional */
}

.reveal .card.exercise-editor {
    --exercise-font-size: 1.3rem;
    margin: 1rem 0;
    border: 1px solid rgba(0, 0, 0, .175);
    border-radius: .375rem;
    font-size: var(--exercise-font-size);
    overflow: hidden;
    width: 99%;
}

