@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
    font-family: 'OpenDyslexic';
    src: url("../fonts/OpenDyslexic-Regular-c95c1c534444aac6be641ca7191c52c8.otf") format('opentype');
}



.dyslexia-font {
    font-family: 'OpenDyslexic', serif;
}

body {
    font-family: 'Arial', sans-serif;
}

.question-container {
    page-break-inside: avoid;
}

.form-container {
    max-width: 412px;
}


.question-block {
    margin-bottom: 20px;
    padding: 10px;
}

.question-form div {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%;
}

.question-form input[type="radio"] {
    margin-right: 0.5rem;
}

.bg-stessie-blue{
    background-color: #213b8a;
}

.bg-stessie-yellow{
    background-color: #f6c300;
}

.bg-stessie-teal{
    background-color: #54baaa;
}

.question-form label {
    margin-top: 0.5rem;
}

.leadershipandimprovingquality {
    /*background-image: url('{{ asset('icons/leadership-and-improving-quality.jpg') }}');*/
    background-image: url("../icons/leadership-and-improving-quality-60191b3b199b26a211ff1a0b6b26b90d.jpg");
    background-size: 7rem 7rem;
    background-repeat: no-repeat;
    color: #213b8a;

}

.inclusiveschoolclimate {
    background-image: url("../icons/inclusive-school-climate-d9871d61b098507e1d1ca01eac2f0343.jpg");
    background-size: 7rem 7rem;
    background-repeat: no-repeat;
    color: #213b8a;

}

.inclusiveclassroompractice {
    background-image: url("../icons/inclusive-classroom-practice-4fa175967843dc413884686435a86a4b.jpg");
    background-size: 7rem 7rem;
    background-repeat: no-repeat;
    color: #213b8a;
}


.leadership-and-improving-quality {
    border: 1rem solid #213b8a;
}

.inclusive-classroom-practice {
    border: 1rem solid #54baaa;
}

.inclusive-school-climate {
    border: 1rem solid #f6c300;
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
