body{
    background-color: #e6f3f6;
}
.quiz-container{
    color: #333;
    border-radius: 10px;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}
.quiz-container > p{
    font-size: 32px;
}
.quiz-description{
    justify-content: left;
}
.question{
    width: 75%;
}
.options{
    position: relative;
    padding-left: 40px;
    color: #333;
    font-size: 16px;
}
#options label{
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    cursor: pointer;
}
.options input{
    opacity: 0;
}
.checkmark {
    position: absolute;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: azure;
    border: 1px solid #ddd;
    border-radius: 50%;
    text-align: center;
}
.options input:checked ~ .checkmark:after {
    display: block;
}
.quiz-question{
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: 0px;
    padding: 16px;
    margin-bottom: 20px;
    background-color: #e6e6fa;
}
.options .checkmark:after{
    content: "";
	width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    top: 50%;
	left: 50%;
    border-radius: 50%;
    transform: translate(-50%,-50%) scale(0);
    transition: 300ms ease-in-out 0s;
}
.options input[type="radio"]:checked ~ .checkmark{
    background: #21bf73;
    transition: 300ms ease-in-out 0s;
}
.options input[type="radio"]:checked ~ .checkmark:after{
    transform: translate(-50%,-50%) scale(1);
}
.btn-submit,
.btn-submit:hover {
    background-color: #555;
    color: #ddd;
    border: 1px solid #ddd;
    padding: 5px 10px;
}

.btn-success{
    padding: 5px 25px;
    background-color: #21bf73;
}

@media print {
    body {
        display: none; /* Hide the entire body when printing */
    }
}
#submitMsg{
    flex: auto;
}
@media(max-width:576px){
    .question{
        width: 100%;
        word-spacing: 2px;
    }
}

h2 {
color: #333;
margin-bottom: 20px;
text-align: center;
}

label {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

/* Styles for the JSON icon */
.site-logo {
    width: 50px;
    height: 50px;
}

.json-icon {
    font-size: 24px; /* Adjust the size as needed */
    transform: translate(7.27755px, -13.3533px);
}

.index {
    border-right: 2px solid #ddd;
}

.index a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.index a.active {
    font-weight: bold;
    background-color: #06BBCC;
}
.service-item-blog{
    background-color: lightpink;
}

.correct { color: green; }
.incorrect { color: red; text-decoration: line-through; }

.header-container {
    display: flex;
    align-items: center;
  }

  .title,
  .tagline {
    display: block;
    margin: 0;
  }
  .tagline{
    font-size: 10px;
  }