.title-slide {
  background-color: #FAFAFA;
  border-top: 40px solid #FAFAFA;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.title {
  padding-bottom: 0.5em;
}

.author {
  padding-bottom: 0em;
}

.institute {
  padding-bottom: 1.5em;
}

.remark-slide-content {
  background-color: #FAFAFA;
  font-size: 26px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.h1 {
  padding-top: 0.25em;
}

.remark-slide-number {
  display: none;
}

table.none {border-style: none;}

table, td, th {
  border: none;
  background-color: #FAFAFA;
}

table {
  width: 100%;
}

td {
  height: 50px;
  vertical-align: middle;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pull-right-2 {
  float: right;
  width: 66%;
}

iframe {
            width: 100%;
            height: 530px; /* Adjust height as needed */
            border: none; /* Optional: Remove border */
        }
        
        @import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
        
        svg text {
        font-family: "Open Sans", sans-sarif;
        }
        
/* Change the color of the colored bar from top of the slide to ash gray (from coolors.co) */
.ash-gray {
  border-top: 80px solid #ACBEA3;
}      

.white {
  background-color: white;
}

/* Make the top of the slide bigger to accommodate bigger titles */

.double {
  border-top: 160px solid #23373B;
}

.triple {
  border-top: 240px solid #23373B;
}

/* Styling of multiple choice questions */

        .question {
            margin-bottom: 20px;
        }
        
        .form-check-label {
            font-size: 26px;
            font-weight: 300;
            margin-left: 10px;
        }
        
        
        
        /* Container for the black radio button */
        
.form-check-input {
    appearance: none;
    transform: scale(1.5);
    margin-top: 9px;
    width: 13px;
    height: 13px;
    border: 2px solid black;
    border-radius: 50%;
    position: relative;
    background-color: transparent;
    cursor: pointer;
}

/* Checked state with a black dot */

      .form-check-input:checked {
            background-color: black;
        }
        
        .result {
            margin-top: 20px;
            font-weight: bold;
        }
        
        .btn {
            font-size: 26px;
            font-weight: 300;
        }

        .btn-custom {
            font-size: 26px;
            font-weight: 300;
            background-color: #23373B;
            border-color: #23373B;
            color: white;
        }
        
        .btn-custom:hover {
            background-color: #23373B;
            border-color: #23373B;
            color: white;
        }

        .submit-button {
  background-color: #23373B !important;
  border: none !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  color: #ffffff !important;
  cursor: pointer;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  line-height: 31px !important;
  height: auto;
  padding: 10px !important;
  width: 50% !important;
  box-sizing: border-box !important;
}

.input-field {
  background-color: #ffffff !important;
  color: #333333 !important;
  border-color: #cccccc;
  border-radius: 4px !important;
  border-style: solid !important;
  border-width: 1px !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 26px !important;
  height: auto;
  line-height: 31px !important;
  margin-bottom: 0;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 10px !important;
  width: 50% !important;
  box-sizing: border-box !important;
  max-width: 50% !important;
  outline: none; /* Removes the blue border */
}  