@font-face {
    font-family: "ANJOMAN";
    src: url('./fonts/ANJOMAN-REGULAR.TTF');
}

:root {
    --accent-1: #6C6FE0;
    --accent-2: #8B7FE8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'ANJOMAN', sans-serif;
}

body {
    margin: 0;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}


.uni-name{
    color: #6c9fa4;
    font-weight: bold;
}

.akhlagh-code{
    color: #6c9fa4;
    font-weight: bold;
}

/* صفحه‌ی خوش‌آمد از فونت ANJOMAN استفاده می‌کنه، فقط داخل همین صفحه */
#welcomeScreen, #welcomeScreen * {
    font-family: 'ANJOMAN';
}


/* =========================================================
   صفحه‌ی ۱: خوش‌آمدگویی (index)
   ========================================================= */
.mobile {
    width: min(100vw, 390px);
    height: 812px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 390/812;

    background-image: url("./img/welcom-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transition: .35s;
}

.description {
    position: absolute;
    top: 38.2%;
    left: 62px;
    width: 250px;
    text-align: justify;
    color: #111;
    font-size:16px;
    line-height: 1.8;
    transition: .35s;
    padding-right: 80px;
}

.time {
    position: absolute;
    text-align: start;
    top: 56.5%;
    right: 140px;
    width: 235px;
    color: #111;
    font-size: 16px;
    line-height: 1.8;
    transition: .35s;
}

.btn {
    position: absolute;
    bottom: 20.8%;
    left: 58px;
    width: 260px;
    height: 60px;
    border: none;
    background: transparent;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: .35s;
}

.btn:hover {
    opacity: .85;
}

/* ---- Theme switch (مشترکِ ظاهری - یک نسخه برای هر صفحه) ---- */
.theme-switch {
    position: absolute;
    top: 6.5%;
    right: 5.8%;
    width: 78px;
    height: 42px;
    border-radius: 25px;
    background: linear-gradient(0deg, rgba(133, 177, 181, 1) 0%, rgba(185, 218, 221, 1) 100%);
    backdrop-filter: blur(15px);
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, .4), 0 6px 15px rgba(0, 0, 0, .12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    z-index: 100;
}

.theme-switch .day, .theme-switch .night {
    position: absolute;
    font-size: 13px;
    color: white;
    transition: .3s;
}

.theme-switch .day {
    right: 13px;
}

.theme-switch .night {
    left: 11px;
    opacity: 0;
}

.switch-circle {
    position: absolute;
    left: 3px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #80a9ad, #639ba0);
    transition: .35s;
}

.icon {
    width: 18px;
    height: 18px;
    position: absolute;
    transition: .35s;
}

.sun {
    color: #fff;
    opacity: 1;
    transform: rotate(0deg);
}

.moon {
    color: #fff;
    opacity: 0;
    transform: rotate(-90deg);
}

/* --- دارک مود صفحه‌ی خوش‌آمد (چک‌باکسِ مخصوصِ همین صفحه: theme-toggle-welcome) --- */
#theme-toggle-welcome:checked + .theme-switch,
#theme-toggle-survey:checked + .theme-switch {
    background: #2d2d2d;
}

.mobile:has(#theme-toggle-welcome:checked) {
    background-image: url("./img/welcom-dark-bg.png");
}

.mobile:has(#theme-toggle-welcome:checked) .description,
.mobile:has(#theme-toggle-welcome:checked) .time,
.mobile:has(#theme-toggle-welcome:checked) .btn {
    color: #fff;
}

body:has(#welcomeScreen #theme-toggle-welcome:checked) {
    background: #2d2d2d;
}

.mobile:has(#theme-toggle-welcome:checked) .switch-circle {
    left: 39px;
    background: linear-gradient(180deg, #1E2021, #1E2021);
}

.mobile:has(#theme-toggle-welcome:checked) .sun {
    opacity: 0;
    transform: rotate(90deg);
}

.mobile:has(#theme-toggle-welcome:checked) .moon {
    opacity: 1;
    transform: rotate(0deg);
}

.mobile:has(#theme-toggle-welcome:checked) .day {
    opacity: 0;
}

.mobile:has(#theme-toggle-welcome:checked) .night {
    opacity: 1;
}

/* ---- Modal (قوانین + پایان آزمون) ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9999;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    width: min(100%, 420px);
    background: #d8d8d8;
    color: #222;
    border-radius: 25px 25px 0 0;
    padding: 18px 22px 30px;
    transform: translateY(100%);
    transition: .35s;
}

.modal-box h2 {
    color: #111;
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.modal-content {
    overflow: hidden;
    color: #555;
    font-size: 16px;
    text-align: justify;
}

.modal-overlay.show .modal-box {
    transform: translateY(0);
}

.modal-handle {
    width: 55px;
    height: 5px;
    background: #ccc;
    border-radius: 20px;
    margin: auto auto 20px;
}

.modal-btn {
    width: 100%;
    height: 100px;
    background: url("./img/btn-light-bg.png");
    border: none;
    color: #fff;
    font-size: 18px;
    transition: .3s;
    margin-top: 10px;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
}

.modal-btn:hover {
    opacity: .9;
}

.mobile:has(#theme-toggle-welcome:checked) ~ .modal-overlay .modal-box {
    background: #232323;
    color: #fff;
}

.mobile:has(#theme-toggle-welcome:checked) ~ .modal-overlay h2 {
    color: #fff;
}

.mobile:has(#theme-toggle-welcome:checked) ~ .modal-overlay .modal-content {
    color: #d7d7d7;
}

.mobile:has(#theme-toggle-welcome:checked) ~ .modal-overlay .modal-handle {
    background: #2d2d2d;
}

.mobile:has(#theme-toggle-welcome:checked) ~ .modal-overlay .modal-btn {
    background-image: url("./img/btn-dark-bg.png");
    color: #fff;
}

.phone:has(#theme-toggle-survey:checked) ~ .modal-overlay .modal-box {
    background: #232323;
    color: #fff;
}

.phone:has(#theme-toggle-survey:checked) ~ .modal-overlay h2 {
    color: #fff;
}

.phone:has(#theme-toggle-survey:checked) ~ .modal-overlay .modal-content {
    color: #d7d7d7;
}

.phone:has(#theme-toggle-survey:checked) ~ .modal-overlay .modal-handle {
    background: #2d2d2d;
}

.phone:has(#theme-toggle-survey:checked) ~ .modal-overlay .modal-btn {
    background-image: url("./img/btn-dark-bg.png");
    color: #fff;
}


/* =========================================================
   صفحه‌ی ۲: پرسشنامه (questionnaire)
   ========================================================= */
.phone {
    position: relative;
    width: 400px;
    max-width: 100vw;
    height: 750px;
    max-height: 100vh;
    overflow: hidden;
    background-image: url("./img/quest-bg.png");
    background-size: cover;
    transition: .35s;
}

.progress-track {
    position: relative;
    border-radius: 50px;
    padding: 14px 18px 8px;
    background-image: url("./img/progressbar-bg.png");
    background-size: cover;
    margin-top: 50px;
}

.progress-strip {
    position: relative;
    height: 5px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    border-radius: 9999px;
    background: #ffffff;
    transition: width .5s cubic-bezier(.4, 0, .2, 1);
}

.progress-label {
    margin-top: 9px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.question-badge {
    background: #6170d0;
    border-radius: 50px;
    padding: 15px 18px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 12px 28px rgba(108, 111, 224, 0.35);
}

.statement-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 26px 22px 22px;
    box-shadow: 0 14px 34px rgba(60, 50, 90, 0.12);
    backdrop-filter: blur(6px);
    will-change: transform, opacity;
    min-height: 180px;
}

.statement-text {
    color: #3a3a4a;
    font-size: 15.5px;
    line-height: 2;
    text-align: center;
    font-weight: 500;
    min-height: 64px;
    font-family: initial;
}

/* عنوان مرحله‌های سن/استان */
.step-question-title {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: #3a3a4a;
    margin-bottom: 22px;
    line-height: 1.8;
}

.step-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 30px;
    border: 1.5px solid #e2e2ec;
    font-family: inherit;
    font-size: 15px;
    text-align: center;
    background: #e5f3f4;
    color: #2c2c3a;
    outline: none;
    transition: border-color .2s ease;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 14px 34px rgba(60, 50, 90, 0.12);
}

.step-input:focus {
    border-color: var(--accent-1);
}

.step-input.invalid {
    animation: shake .35s;
    border-color: #e05656;
}

@keyframes shake {
    10%, 90% {
        transform: translateX(-2px);
    }
    20%, 80% {
        transform: translateX(3px);
    }
    30%, 50%, 70% {
        transform: translateX(-5px);
    }
    40%, 60% {
        transform: translateX(5px);
    }
}

/* ---------- slider ---------- */
.slider-wrap {
    position: relative;
    height: 20px;
    margin: 26px 4px 18px;
}

.slider-bg {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    transform: translateY(-50%);
    background: #e7e5f0;
    border-radius: 9999px;
}

.slider-fill {
    position: absolute;
    top: 50%;
    height: 6px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #3E7BD9, #4FA3E8);
    border-radius: 9999px;
    pointer-events: none;
    transition: left .15s ease, width .15s ease;
}

input[type=range].likert-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    direction: ltr;
}

input[type=range].likert-slider::-webkit-slider-runnable-track {
    background: transparent;
    height: 20px;
}

input[type=range].likert-slider::-moz-range-track {
    background: transparent;
    height: 20px;
}

input[type=range].likert-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 46% 54% 58% 42% / 52% 48% 52% 48%;
    background: radial-gradient(circle at 32% 26%, #7b8ade, rgba(255, 255, 255, 0) 42%),
    linear-gradient(150deg, #eaf4ff 0%, #a9d0f7 38%, #5e6dca 72%, #5e6dca 100%);
    border: none;
    box-shadow: 0 8px 14px rgba(47, 127, 216, 0.5), inset 0 -5px 7px rgba(20, 80, 170, 0.4), inset 0 4px 5px rgba(255, 255, 255, 0.95);
    cursor: grab;
    transition: transform .15s ease;
}

input[type=range].likert-slider:active::-webkit-slider-thumb {
    transform: scale(1.12) rotate(-4deg);
    cursor: grabbing;
}

input[type=range].likert-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 46% 54% 58% 42% / 52% 48% 52% 48%;
    background: radial-gradient(circle at 32% 26%, #7b8ade, rgba(255, 255, 255, 0) 42%),
    linear-gradient(150deg, #5e6dca 0%, #5e6dca 38%, #5e6dca 72%, #5e6dca 100%);
    border: none;
    box-shadow: 0 8px 14px rgba(47, 127, 216, 0.5), inset 0 -5px 7px rgba(20, 80, 170, 0.4), inset 0 4px 5px rgba(255, 255, 255, 0.95);
    cursor: grab;
}

.likert-options {
    display: flex;
    background: #d9d9d9;
    border-radius: 35px;
    padding: 3px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.likert-btn {
    position: relative;
    flex: 1;
    border: none;
    background: transparent;
    color: #040404;
    font-size: 11px;
    font-weight: 600;
    padding: 9px 4px;
    text-align: center;
    line-height: 1.5;
    cursor: pointer;
    transition: all .2s ease;
    -webkit-tap-highlight-color: transparent;
}

.likert-btn:not(:first-child)::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 18%;
    bottom: 18%;
    width: 1.5px;
    background: #ffffff;
}

.likert-btn.active {
    background: radial-gradient(circle, rgba(210, 202, 251, 1) 0%, rgba(217, 217, 217, 0) 100%);
}

/* ---------- nav buttons ---------- */
.nav-btn {
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 26px rgba(120, 130, 200, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    color: #5b5b8a;
    transition: transform .15s ease, opacity .2s ease;
}

.nav-btn:active {
    transform: scale(0.94);
}

.nav-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.nav-btn svg {
    width: 26px;
    height: 26px;
}

/* ---------- animation بین سوالات/مراحل ---------- */
.slide-out-left {
    animation: sol .25s forwards;
}

.slide-in-right {
    animation: sir .25s forwards;
}

.slide-out-right {
    animation: sor .25s forwards;
}

.slide-in-left {
    animation: sil .25s forwards;
}

@keyframes sol {
    to {
        transform: translateX(-50px);
        opacity: 0;
    }
}

@keyframes sir {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes sor {
    to {
        transform: translateX(50px);
        opacity: 0;
    }
}

@keyframes sil {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ---- دارک مود صفحه‌ی پرسشنامه (چک‌باکسِ مخصوصِ همین صفحه: theme-toggle-survey) ---- */
.phone:has(#theme-toggle-survey:checked) {
    background-image: url("./img/quest-bg-dark.png");
}

.phone:has(#theme-toggle-survey:checked) .switch-circle {
    left: 39px;
    background: linear-gradient(180deg, #1E2021, #1E2021);
}

.phone:has(#theme-toggle-survey:checked) .sun {
    opacity: 0;
    transform: rotate(90deg);
}

.phone:has(#theme-toggle-survey:checked) .moon {
    opacity: 1;
    transform: rotate(0deg);
}

.phone:has(#theme-toggle-survey:checked) .day {
    opacity: 0;
}

.phone:has(#theme-toggle-survey:checked) .night {
    opacity: 1;
}

.phone:has(#theme-toggle-survey:checked) .progress-track {
    background-image: url("./img/progressbar-bg-dark.png");
    background-size: cover;
}

.phone:has(#theme-toggle-survey:checked) .statement-card {
    background: url("./img/question-box-dark-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.phone:has(#theme-toggle-survey:checked) .statement-text,
.phone:has(#theme-toggle-survey:checked) .step-question-title {
    color: #fff !important;
}

/* کمکی برای مخفی/نمایش صفحات */
.app-screen {
    position: relative;
}


*, ::before, ::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: ;
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: ;
}

/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */
*, ::after, ::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

::after, ::before {
    --tw-content: ''
}

:host, html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit
}

a {
    color: inherit;
    text-decoration: inherit
}

b, strong {
    font-weight: bolder
}

code, kbd, pre, samp {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button, select {
    text-transform: none
}

button, input:where([type=button]), input:where([type=reset]), input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
    margin: 0
}

fieldset {
    margin: 0;
    padding: 0
}

legend {
    padding: 0
}

menu, ol, ul {
    list-style: none;
    margin: 0;
    padding: 0
}

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

input::placeholder, textarea::placeholder {
    opacity: 1;
    color: #9ca3af
}

[role=button], button {
    cursor: pointer
}

:disabled {
    cursor: default
}

audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
    vertical-align: middle
}

img, video {
    max-width: 100%;
    height: auto
}

[hidden]:where(:not([hidden=until-found])) {
    display: none
}

.relative {
    position: relative
}

.z-10 {
    z-index: 10
}

.mt-16 {
    margin-top: 4rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-6 {
    margin-top: 1.5rem
}

.flex {
    display: flex
}

.hidden {
    display: none
}

.h-full {
    height: 100%
}

.flex-1 {
    flex: 1 1 0%
}

.flex-col {
    flex-direction: column
}

.items-end {
    align-items: flex-end
}

.justify-start {
    justify-content: flex-start
}

.justify-between {
    justify-content: space-between
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.pb-8 {
    padding-bottom: 2rem
}

.pt-8 {
    padding-top: 2rem
}

