html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #1a1a1a;
    min-height: 100vh;
    background-color: #ecebeb !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

h1 {
    font-size: 2rem !important;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.75rem !important;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 1.25rem;
    color: #000;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem !important;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #000;
}

h4 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #000;
}

h5 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #000;
}

h6 {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #000;
}

p {
    margin-top: 0;
    margin-bottom: 1.25rem;
}


#app {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%;
}



.popup_menu {
    background-color: #000;
}

.submission_confirm_button {
    background-color: #000;
}

.checkbox {
    background-color: transparent;
}

.selected_answer {
    background-color: #616261;
}

button {
    color: #fff;
    background-color: #000;
    border: none;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

button:hover {
    background-color: #333;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

button:active {
    background-color: #000;
}



.common_style {
    padding-top: 50px;
}

.assessment_drawer {
    background-color: black !important;
    width: 150px;
}

@media (max-width: 959.95px) {
    .common_style {
        padding-top: 30px;
    }

    h1 {
        font-size: 1.75rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.15rem !important;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .common_style {
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem !important;
    }

    h2 {
        font-size: 1.25rem !important;
    }
}

@media print {
    body {
        background-color: #fff;
    }
}