/* _content/Tessura.Frontend/Components/Layout/Calendar/Calendar.razor.rz.scp.css */
.calendar[b-cnu5xhl74s] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    min-width: 800px;
    height: 100%;
}

.small-calendar[b-cnu5xhl74s] {
    min-width: fit-content;
    width: 100%;
    justify-content:stretch;
}

.top-row[b-cnu5xhl74s] {
    height: 110px;
    background-color: white;
    border-bottom-width: 2px;
    border-bottom-color: rgba(220, 220, 220, 255);
    border-bottom-style: solid;

    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
}

.corner[b-cnu5xhl74s] {
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.corner > img[b-cnu5xhl74s] {
    width: 20px;
}

.weekdays[b-cnu5xhl74s] {
    flex: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;

    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-around;
    gap: 8px;
}

.day-of-week[b-cnu5xhl74s] {
    flex: 1;
    background-color: var(--primary-gray);
    border-radius: 8px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.day-of-week > p[b-cnu5xhl74s] {
    color: var(--primary-black);
    font-weight: 400;
    font-size: 22px;
}

.current-day[b-cnu5xhl74s] {
    background-color: var(--primary-black);
}

.current-day > p[b-cnu5xhl74s] {
    color: white;
}

.body[b-cnu5xhl74s] {
    background-color: var(--primary-gray);
    padding-top: 50px;
    
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: auto;
}

.body[b-cnu5xhl74s]::-webkit-scrollbar {
    width: 10px; 
}

.body[b-cnu5xhl74s]::-webkit-scrollbar-thumb {
    background: rgba(220, 220, 220, 255);
    border-radius: 5px;
    transition: background 300ms;
}

.body[b-cnu5xhl74s]::-webkit-scrollbar-thumb:hover {
    background: var(--primary-accent);
}

.left-column[b-cnu5xhl74s] {
    width: 80px;
    min-height: 530px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.left-column > div[b-cnu5xhl74s] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-top-width: 0.5px;
}

.left-column > div > p[b-cnu5xhl74s] {
    font-weight: 300;
    font-size: 15px;
    color: var(--primary-black);
    margin-bottom: 0;
    margin-top: -11px;
    text-align: center;
}

.entries[b-cnu5xhl74s] {
    flex: 1;
    position: relative;

    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-around;
}

.entry-holder[b-cnu5xhl74s] {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.entry-holder > div[b-cnu5xhl74s] {
    position: absolute;
    left: 0;
    right: 0;
    overflow: hidden;
    max-width: 100%;
}

.day[b-cnu5xhl74s] {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-around;

    position: relative;
    min-width: 100px;
}

.day > div[b-cnu5xhl74s] {
    border-top: solid;
    border-top-color: rgba(218,220,222,255);
    border-top-width: 1px;
}

.add-entry-preview[b-cnu5xhl74s] {
    position: absolute;
    inset: 5px;
    border-style: dashed;

    border-radius: 8px;
    border-color: var(--primary-accent);
    border-width: 1px;
    cursor: pointer;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms;
}

.add-entry-preview:hover[b-cnu5xhl74s] {
    opacity: 1;
}

.add-entry-preview img[b-cnu5xhl74s] {
    width: 10px;
    border: solid 1px var(--primary-accent);
    border-radius: 5px;
    background-color: var(--primary-accent);
    mix-blend-mode: multiply;
    padding: 3px;
}
/* _content/Tessura.Frontend/Components/Layout/Calendar/CalendarEntry.razor.rz.scp.css */
div[b-75l66qymfe] {
    display: flex;
    flex-direction: column;
    background-color: cornflowerblue;
    justify-content: center;
    border-radius: 8px;
    border-left: 2px solid blue;
    position: absolute;
    inset: 3px;
    overflow: hidden;
    padding: 5px;
    flex-wrap: wrap;
    gap: 5px;

    transition: all 200ms;
    cursor: pointer;
    pointer-events: initial;
}

div:hover[b-75l66qymfe] {
    filter: brightness(1.2);
}

.title[b-75l66qymfe], .time[b-75l66qymfe] {
    margin: 0;
    display: inline-block;
    color: var(--primary-black);
    font-size: 15px;
}

.title[b-75l66qymfe] {
    font-weight: 500;
}

.time[b-75l66qymfe] {
    font-weight: 200;
    font-size: 12px;
}
/* _content/Tessura.Frontend/Components/Layout/DashboardLayout.razor.rz.scp.css */
.container[b-83q7a6cpca] {
    height: 100vh;
    width: 100vw;

    display: flex;
    flex-direction: row;
    justify-content: start;
}

.left-container[b-83q7a6cpca] {
    width: 350px;
    background-color: var(--primary-black);

    padding-left: 10px;
    padding-right: 10px;

    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;

    position: relative;
}

.right-container[b-83q7a6cpca] {
    flex: 1;
    background-color: var(--primary-black);
    position: relative;
    overflow-x: hidden;
}

.right-container img[b-83q7a6cpca] {
    position: absolute;
    left: -350px;
    right: 0;
    top: 0;
    bottom: 0;

    height: 100vh;
    filter: blur(25px);
    opacity: 0.8;
    user-select: none;
}

.right-container > div[b-83q7a6cpca] {
    position: absolute;
    top: 10px;
    bottom: 0;
    left: 0;
    right: 10px;

    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    background-color: white;
    user-select: none;
    overflow: hidden;
}

.background[b-83q7a6cpca] {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    height: 100vh;
    filter: blur(25px);
    opacity: 0.8;
    user-select: none;
}

.widget[b-83q7a6cpca] {
    background-color: rgba(38, 38, 38, 0.6);
    border-radius: 22px;
    
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;

    z-index: 10;
}

.profile[b-83q7a6cpca] {
    margin-top: 10px;

    display: flex;
    flex-direction: row;
    align-items: center;
}

.profile-picture[b-83q7a6cpca] {
    height: 30px;
    margin-right: 15px;
    user-select: none;
}

.profile > div[b-83q7a6cpca] {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: start;
    gap: 2px;

    flex: 1
}

.profile > a[b-83q7a6cpca] {
    padding-top: 12px;
    padding-bottom: 10px;
    padding-left: 13px;
    padding-right: 13px;

    border-radius: 30px;
    cursor: pointer;
}
.profile > a > img[b-83q7a6cpca] {
    height: 17px;
}

.profile-name[b-83q7a6cpca] {
    color: white;
    font-family: 'Outfit', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    margin: 0;
}

.profile-school[b-83q7a6cpca] {
    color: white;
    font-family: 'Outfit', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 200;
    margin: 0;
    font-size: 12px;
}

.schedule-list[b-83q7a6cpca] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.schedule-list-header[b-83q7a6cpca] {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    gap: 8px;
}

.schedule-list-header p[b-83q7a6cpca] {
    font-family: 'Outfit', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    font-weight: 500;
    margin: 0;
    margin-bottom: 3px;
    flex: 1;
}

.schedule-list-header button[b-83q7a6cpca] {
    border-radius: 10px;

    padding-top: 10px;
    padding-bottom: 8px;
    padding-right: 10px;
    padding-left: 10px;
}

.schedule-list-header button img[b-83q7a6cpca] {
    width: 12px;
}

.schedule-radio[b-83q7a6cpca] {
    display: none;
}

.schedule-list-radio-label[b-83q7a6cpca] {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    color: white;
    font-family: var(--font-family);
    font-weight: var(--text-body-weight);
    font-size: var(--font-size-text-body);
    text-align: center;
    user-select: none;

    padding-top: 5px;
    padding-bottom: 5px;

    transition: background-color 200ms;
}

.schedule-list-radio-label:hover[b-83q7a6cpca] {
    background-color: var(--secondary-black);
}

.schedule-radio:checked + .schedule-list-radio-label[b-83q7a6cpca] {
    background-color: var(--primary-accent);
    color: var(--secondary-black);
    font-weight: 500;
}

.link[b-83q7a6cpca] {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
}

.link > p[b-83q7a6cpca] {
    font-family: 'Outfit', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    margin: 0;
}

.link > div[b-83q7a6cpca] {
    display: flex;
    gap: 7px;
}

.link-buttons[b-83q7a6cpca] {
    margin-top: 7px;
    margin-bottom: 7px;
}

.link-title[b-83q7a6cpca] {
    font-weight: var(--h2-weight);
}

.link-desc[b-83q7a6cpca] {
    font-weight: var(--text-body-weight);
    font-size: var(--font-size-text-body);
}

.max-student[b-83q7a6cpca] {
    width: 100%;
    align-items: center;
    margin: 0;
}

.max-student input[type="range"][b-83q7a6cpca] {
    flex: 1;
    height: 10px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    background: transparent;
}

.max-student input[type="range"][b-83q7a6cpca]::-webkit-slider-runnable-track {
    background: var(--primary-black);
    height: 5px;
}

.max-student input[type="range"][b-83q7a6cpca]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 15px;
    width: 15px;
    background-color: var(--primary-accent);
    border-radius: 10px;
    margin-top: -5px;
}

.max-student-title[b-83q7a6cpca] {
    font-size: var(--font-size-text-body);
    font-weight: var(--text-body-weight);
    padding-top: 10px;
}

.max-student p[b-83q7a6cpca] {
    margin: 0;
    color: white;
    font-family: var(--font-family);
}

.student-list[b-83q7a6cpca] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.student-list-header[b-83q7a6cpca] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.student-list-header > p[b-83q7a6cpca] {
    flex: 1;
    color: white;
    font-weight: var(--h2-weight);
    font-family: var(--font-family);
    margin: 0;
}

    .student-list-header button[b-83q7a6cpca] {
        border-radius: 10px;
        padding-top: 10px;
        padding-bottom: 8px;
        padding-right: 10px;
        padding-left: 10px;
    }

.student-list-header button img[b-83q7a6cpca] {
    width: 12px;
}

.student-list-div[b-83q7a6cpca] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    transition: all 500ms;
}

.student-list-div > p[b-83q7a6cpca] {
    color: white;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 100;
    margin-top: 40px;
    margin-bottom: 40px;
}

.student-radio[b-83q7a6cpca] {
    display: none;
}

.student-radio:checked + .student-radio-label[b-83q7a6cpca] {
    background-color: var(--primary-accent);
}

.student-radio:checked + .student-radio-label span[b-83q7a6cpca] {
    color: var(--secondary-black);
    font-weight: var(--h2-weight);
}

.student-radio:checked + .student-radio-label img[b-83q7a6cpca] {
    filter: brightness(0);
}

.student-radio-label[b-83q7a6cpca] {
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
    width: min-content;
    
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;

    cursor: pointer;
    border-radius: 8px;

    transition: background-color 200ms;
}

.student-radio-label:hover[b-83q7a6cpca] {
    background-color: var(--secondary-black);
}

.student-radio-label img[b-83q7a6cpca] {
    width: 40px;
    margin-bottom: 10px;
    user-select: none;
}

.student-radio-label span[b-83q7a6cpca] {
    color: white;
    font-family: var(--font-family);
    font-weight: var(--text-body-font-weight);
    font-size: var(--font-size-text-body);
    margin: 0;
    user-select: none;
    text-align: center;
    vertical-align: middle;
    word-wrap: normal;
    flex: 1;
}

.fade-in[b-83q7a6cpca] {
    animation-name: fade-in-b-83q7a6cpca;
    animation-duration: 300ms;
}

@keyframes fade-in-b-83q7a6cpca {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* _content/Tessura.Frontend/Components/Layout/HomeLayout.razor.rz.scp.css */
.navbar[b-nfft1jmpju] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
}

nav[b-nfft1jmpju] {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: white;
    box-shadow: none;
}

html:not([data-scroll='0']) nav[b-nfft1jmpju] {
    box-shadow: rgba(0,0,0,0.1) 0 0 40px 1px;
}

.body[b-nfft1jmpju] {
    margin-top: 80px;
}

.links[b-nfft1jmpju] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

img[b-nfft1jmpju] {
    width: 150px;
    cursor: pointer;
}

[b-nfft1jmpju] .nav-link {
    font-family: var(--font-family);
    font-weight: var(--h2-weight);
    color: var(--primary-text);
    font-size: var(--font-size-text-body);
    border-radius: 8px;
    padding: 8px 4px 8px 4px;
    text-decoration: none;

    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 17px;
    padding-right: 17px;

    transition: all 200ms;
}

[b-nfft1jmpju] .nav-link:hover {
    background-color: var(--tertiary-gray);
}

[b-nfft1jmpju] .active {
    background-color: var(--primary-accent);
    color: white;
}

[b-nfft1jmpju] .active:hover {
    background-color: var(--primary-accent);
    color: white;
}

footer[b-nfft1jmpju] {
    background-color: var(--primary-black);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px 16px 32px;
}

footer p[b-nfft1jmpju] {
    color: white;
    font-weight: 200;
}

footer a[b-nfft1jmpju] {
    color: white;
    font-family: var(--font-family);
    font-weight: 200;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
/* _content/Tessura.Frontend/Components/Modals/Base/DeleteModal.razor.rz.scp.css */
.container[b-325ij1ie6g] {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .container > div[b-325ij1ie6g] {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        background: rgb(255,206,206);
        background: linear-gradient(135deg, rgba(255,206,206,1) 0%, rgba(255,105,105,1) 100%);
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 10px;
        margin-top: 15px;
    }

img[b-325ij1ie6g] {
    width: 35px;
    filter: brightness(1);
}

.header[b-325ij1ie6g] {
    font-weight: var(--h2-weight);
    color: var(--primary-text);
    font-size: 25px;
    margin: 0;
    margin-top: 15px;
    margin-bottom: 10px;
}

.text[b-325ij1ie6g] {
    font-weight: 200;
    font-size: 15px;
    margin: 0;
    padding-bottom: 40px;
}
/* _content/Tessura.Frontend/Components/Modals/Base/EditDeleteCancelModal.razor.rz.scp.css */
.container[b-elea4pydli] {
    display: grid;
    grid-template-rows: 1fr 55px;
}
/* _content/Tessura.Frontend/Components/Modals/Base/ErrorModal.razor.rz.scp.css */
div[b-21vr8njouc] {
    position: fixed;
    top: 1%;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);

    background-color: red;
    width: fit-content;
    height: 0;

    overflow: hidden;
    display: block;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;
}

p[b-21vr8njouc] {
    color: white;
    white-space: nowrap;
    margin-right: 16px;
    margin-left: 16px;
}

.show[b-21vr8njouc] {
    animation: show-b-21vr8njouc 2000ms;
}

@keyframes show-b-21vr8njouc {
    0% {
        height: 0;
    }

    10% {
        height: 50px;
    }

    90% {
        height: 50px;
    }

    100% {
        height: 0;
    }
}
/* _content/Tessura.Frontend/Components/Modals/Base/Modal.razor.rz.scp.css */
.darken[b-8xsn1os1qn] {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100vw;
    height: 100vh;
    opacity: 0.5;
    background-color: black;
    z-index: 20;

    animation-name: fade-in-soft;
    animation-duration: 400ms;
}

.modal[b-8xsn1os1qn] {
    position: fixed;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
    width: min-content;
    min-width: 500px;
    height: min-content;
    border-radius: 8px;
    background-color: white;
    z-index: 30;

    display: grid;
    grid-template-rows: 50px 1fr;
    grid-template-columns: 1fr;
    animation-name: fade-in-enter-b-8xsn1os1qn;
    animation-duration: 300ms;
}

@keyframes fade-in-enter-b-8xsn1os1qn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.top[b-8xsn1os1qn] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.top-border[b-8xsn1os1qn] {
    border-bottom-color: var(--secondary-gray);
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.top p[b-8xsn1os1qn] {
    margin: 0;
    margin-left: 20px;
    flex: 1;
    font-size: 20px;
}

.top button[b-8xsn1os1qn] {
    margin-right: 15px;
    border-radius: 8px;
    
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 8px;
    padding-left: 8px;
}

img[b-8xsn1os1qn] {
    width: 10px;
}
/* _content/Tessura.Frontend/Components/Modals/ScheduleEntry/AddScheduleEntryDialog.razor.rz.scp.css */
[b-tk4vcsj1zf] select {
    font-family: var(--font-family);
    border: none;
    background-color: var(--primary-gray);
    padding: 2px 5px 2px 5px;
    border-radius: 8px;
}

[b-tk4vcsj1zf] select:focus-within {
    outline: 1px solid var(--primary-black);
}

.select-student[b-tk4vcsj1zf] {
    margin-bottom: 25px;
    padding-top: 10px;
}

div[b-tk4vcsj1zf] {
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 20px;
}
/* _content/Tessura.Frontend/Components/Modals/ScheduleEntry/EditScheduleEntryModal.razor.rz.scp.css */
div[b-9vji0ja9hr] {
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 20px;
}
/* _content/Tessura.Frontend/Components/Modals/Schedule/AddScheduleModal.razor.rz.scp.css */
.container1[b-fag2tq86sy], .container2[b-fag2tq86sy] {
    width: 60vw;
    height: 55vh;
}


.container1[b-fag2tq86sy] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container2[b-fag2tq86sy] {
    display: grid;
    grid-template-columns: 200px 1fr;
}

.loading-container[b-fag2tq86sy] {
    width: 60vw;
    height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-container p[b-fag2tq86sy] {
    color: var(--primary-text);
    font-weight: 100;
    font-size: 20px;
}

.form[b-fag2tq86sy] {
    display: flex;
    flex-direction: column;
}

.separator[b-fag2tq86sy] {
    height: 20px;
}

label[b-fag2tq86sy] {
    color: var(--primary-text);
}

[b-fag2tq86sy] input, [b-fag2tq86sy] textarea {
    border: 1px solid var(--secondary-gray);
    outline-color: var(--primary-accent);
    border-radius: 8px;
    background-color: white;
    font-family: var(--font-family);
    color: var(--primary-text);
    padding: 8px;
    resize: none;
    transition: all 500ms;
}

[b-fag2tq86sy] input:focus, [b-fag2tq86sy] input:focus-visible {
    outline-color: var(--primary-accent);
    border-color: var(--primary-accent);
}

[b-fag2tq86sy] input {
    max-width: 200px;
}

[b-fag2tq86sy] input.invalid {
    outline: 1px solid red;
}

[b-fag2tq86sy] textarea.invalid {
    outline: 1px solid red;
}

[b-fag2tq86sy] textarea {
    max-width: 500px;
}

button[b-fag2tq86sy] {
    max-width: fit-content;
}

.next-slide-animation[b-fag2tq86sy] {
    animation-name: next-slide-b-fag2tq86sy;
    animation-duration: 600ms;
}

@keyframes next-slide-b-fag2tq86sy {
    from {
        opacity: 1;
    } 
    to {
        opacity: 0;
    }
}


.next-slide-enter-animation[b-fag2tq86sy] {
    animation-name: next-slide-b-fag2tq86sy;
    animation-direction: reverse;
    animation-duration: 600ms;
}

.second-slide-header[b-fag2tq86sy], .second-slide-subtext[b-fag2tq86sy] {
    color: var(--primary-text);
    font-weight: var(--h2-weight);
    font-size: 20px;
}

.second-slide-subtext[b-fag2tq86sy] {
    font-size: 13px;
    font-weight: 200;
    padding-bottom: 30px;
}

.left[b-fag2tq86sy] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.left p[b-fag2tq86sy] {
    text-align: right;
    display: inline-block;
    max-width: 150px;
    margin: 0;
}

.second-slide-header[b-fag2tq86sy] {
    font-size: 25px;
    padding-bottom: 10px;
}

.right[b-fag2tq86sy] {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    max-height: 50vw;
    overflow: hidden;
    padding-left: 40px;
}
/* _content/Tessura.Frontend/Components/Modals/Schedule/CopyLinkModal.razor.rz.scp.css */
.container[b-6lv1447pl1] {
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-left: 20px;
    padding-top: 15px;
    padding-right: 20px;
}

p[b-6lv1447pl1] {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-text);
    margin: 0;
}

.link-container[b-6lv1447pl1] {
    display: flex;
    height: fit-content;
    width: fit-content;
    border-radius: 8px;
    background-color: var(--primary-gray);
    align-items: center;
    padding-left: 20px;
    gap: 20px;
    align-self: center;
    margin-top: 15px;
}

    .link-container p[b-6lv1447pl1] {
        font-weight: 200;
        font-size: 16px;
    }

    .link-container button[b-6lv1447pl1] {
        background-color: var(--secondary-gray);
        border: none;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
        cursor: pointer;
        transition: filter 200ms;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .link-container button:hover[b-6lv1447pl1] {
            outline: 1px solid var(--secondary-text);
        }
        
        .link-container button img[b-6lv1447pl1] {
            width: 20px;
            margin: 10px;
        }

.share[b-6lv1447pl1] {
    margin-top: 15px;
}

.share-container[b-6lv1447pl1] {
    display: flex;
    gap: 20px;
    padding: 20px;
    justify-content: space-evenly;
    align-self: center;
    margin-bottom: 15px;
}

.share-container img[b-6lv1447pl1] {
    width: 40px;
    cursor: pointer;
    border-radius: 40px;
    border: 2px solid white;
}

    .share-container img:nth-child(1):hover[b-6lv1447pl1] {
        border-color: rgb(252,197,57);
    }

    .share-container img:nth-child(2):hover[b-6lv1447pl1] {
        border-color: rgb(63,165,47);
    }

    .share-container img:nth-child(3):hover[b-6lv1447pl1] {
        border-color: rgba(39,154,225,255);
    }

    .share-container img:nth-child(4):hover[b-6lv1447pl1] {
        border-color: rgba(24,88,218,255);
    }

svg.check-circle[b-6lv1447pl1] {
    color: #17c964;
}

@keyframes success-b-6lv1447pl1 {
    0% {
        background-color: var(--secondary-gray);
    }

    25% {
        background-color: chartreuse;
    }

    75% {
        background-color: chartreuse;
    }

    100% {
        background-color: var(--secondary-gray);
    }
}

/* Checkmark animation */
/* BELOW IS THE ESSENTIAL CODE FOR THE ANIMATION */
@keyframes checkmark-b-6lv1447pl1 {
    0% {
        stroke-dashoffset: 50%;
    }

    100% {
        stroke-dashoffset: 0px;
    }
}

svg.check-circle polyline[b-6lv1447pl1] {
    animation: checkmark-b-6lv1447pl1 0.5s cubic-bezier(0.55, 0.2, 0.71, -0.04) 0.7s backwards;
}

@keyframes grow-circle-b-6lv1447pl1 {
    0% {
        r: 0;
    }
}

@keyframes grow-circle-bigger-b-6lv1447pl1 {
    50% {
        opacity: 0.11;
    }

    100% {
        r: 100;
        opacity: 0;
    }
}

svg.check-circle circle.semi-transparent[b-6lv1447pl1] {
    animation: grow-circle-b-6lv1447pl1 0.45s cubic-bezier(0.66, 0.23, 0.51, 1.23) backwards, grow-circle-bigger-b-6lv1447pl1 0.9s linear 1.1s forwards;
}

svg.check-circle circle.colored[b-6lv1447pl1] {
    animation: grow-circle-b-6lv1447pl1 0.5s cubic-bezier(0.66, 0.23, 0.51, 1.23) 0.25s backwards;
}
/* _content/Tessura.Frontend/Components/Modals/Schedule/DeleteScheduleModal.razor.rz.scp.css */
.container[b-xwlbzrszzf] {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .container div[b-xwlbzrszzf] {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        background: rgb(255,206,206);
        background: linear-gradient(135deg, rgba(255,206,206,1) 0%, rgba(255,105,105,1) 100%);
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 10px;
        margin-top: 15px;
    }

img[b-xwlbzrszzf] {
    width: 35px;
    filter: brightness(1);
}

.header[b-xwlbzrszzf] {
    font-weight: var(--h2-weight);
    color: var(--primary-text);
    font-size: 25px;
    margin: 0;
    margin-top: 15px;
    margin-bottom: 10px;
}

.text[b-xwlbzrszzf] {
    font-weight: 200;
    font-size: 15px;
    margin: 0;
    padding-bottom: 40px;
}
/* _content/Tessura.Frontend/Components/Modals/Schedule/EditScheduleModal.razor.rz.scp.css */
.container[b-is08opie59] {
    width: 60vw;
    height: 55vh;
    display: grid;
    grid-template-columns: 200px 1fr;
}


.right[b-is08opie59] {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    max-height: 50vw;
    overflow: hidden;
    padding-left: 40px;
}

label[b-is08opie59] {
    color: var(--primary-text);
}

[b-is08opie59] input {
    border: 1px solid var(--secondary-gray);
    outline-color: var(--primary-accent);
    border-radius: 8px;
    background-color: white;
    font-family: var(--font-family);
    color: var(--primary-text);
    padding: 8px;
    resize: none;
    transition: all 500ms;
    max-width: 150px;
}

    [b-is08opie59] input:focus, [b-is08opie59] input:focus-visible {
        outline-color: var(--primary-accent);
        border-color: var(--primary-accent);
    }

    [b-is08opie59] input.invalid {
        outline: 1px solid red;
    }

.left[b-is08opie59] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
}

    .left p[b-is08opie59] {
        text-align: right;
        display: inline-block;
        max-width: 150px;
        margin: 0;
    }

.header[b-is08opie59] {
    font-size: 25px;
    padding-bottom: 10px;
}
/* _content/Tessura.Frontend/Components/Modals/StudentModal/StudentModal.razor.rz.scp.css */
[b-jg60h2i7oj] input, [b-jg60h2i7oj] textarea {
    border: 1px solid var(--secondary-gray);
    outline-color: var(--primary-accent);
    border-radius: 8px;
    background-color: white;
    font-family: var(--font-family);
    color: var(--primary-text);
    padding: 8px;
    resize: none;
    transition: all 500ms;
    display: block;
    margin-top: 10px;
}

    [b-jg60h2i7oj] input:focus, [b-jg60h2i7oj] input:focus-visible {
        outline-color: var(--primary-accent);
        border-color: var(--primary-accent);
    }

[b-jg60h2i7oj] input {
    max-width: 200px;
}

    [b-jg60h2i7oj] input.invalid {
        outline: 1px solid red;
    }

[b-jg60h2i7oj] textarea {
    max-width: 500px;
}

    [b-jg60h2i7oj] textarea.invalid {
        outline: 1px solid red;
    }

.content[b-jg60h2i7oj] {
    display: flex;
    flex-direction: column;
    padding: 20px 25px 20px 25px;
    gap: 25px;
}

.loader-container[b-jg60h2i7oj] {
    width: 475px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* _content/Tessura.Frontend/Components/Modals/Utility/ModalButtonRow.razor.rz.scp.css */
div[b-0o7rs05w4c] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 10px;
    gap: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.show-border[b-0o7rs05w4c] {
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: var(--secondary-gray);
}
/* _content/Tessura.Frontend/Components/Modals/Utility/TimeSpanSelect.razor.rz.scp.css */

.select-time[b-j1hv8s25ds] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding-top: 10px;
}

    .select-time label[b-j1hv8s25ds] {
        margin-right: 10px;
    }

[b-j1hv8s25ds] input[type=time] {
    border: none;
    background-color: var(--primary-gray);
    font-family: var(--font-family);
    border-radius: 8px;
    padding: 2px 5px 2px 5px;
    margin-left: 5px;
}

    [b-j1hv8s25ds] input[type=time]:focus-within {
        outline: 1px solid var(--primary-black);
    }
/* _content/Tessura.Frontend/Components/Modals/Utility/WeekdaySelect.razor.rz.scp.css */
[b-602ti23jvq] input[type=radio] {
    display: none;
}

.input-radio-group[b-602ti23jvq] {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.weekday-label[b-602ti23jvq] {
    background-color: var(--primary-gray);
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 200ms;
}

[b-602ti23jvq] input[type=radio]:checked + .weekday-label {
    background-color: var(--primary-accent);
    color: white;
}
/* _content/Tessura.Frontend/Components/Pages/Home.razor.rz.scp.css */
.hero[b-ytfgxi0fjc] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

    .hero > div[b-ytfgxi0fjc] {
        display: grid;
        grid-template-columns: 50% 50%;
    }

    .hero > div > div[b-ytfgxi0fjc] {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        max-width: 400px;
        margin-right: 25px;
    }

    .hero img[b-ytfgxi0fjc] {
        width: 400px;
        margin-left: 25px;
    }

.problem[b-ytfgxi0fjc], .solution[b-ytfgxi0fjc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;

    border: 1px solid var(--secondary-gray);
    border-radius: 16px;
    padding: 36px 16px 32px 16px;
    margin-left: 100px;
    margin-right: 100px;

    box-shadow: rgba(0,0,0,0.1) 0 0 30px 1px;
}

.problem > div[b-ytfgxi0fjc] {
    display: flex;
    flex-direction: row;

}

    .problem > div > div[b-ytfgxi0fjc] {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
    }

    .problem > div > div > p[b-ytfgxi0fjc] {
        text-align: left;
        max-width: 200px;
    }

    .problem img[b-ytfgxi0fjc] {
        width: 400px;
    }

.solution[b-ytfgxi0fjc] {
    margin-bottom: 100px;
}

    .solution > div[b-ytfgxi0fjc] {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 30px 1fr;
        align-items: center;
        justify-content: center;

        margin-top: 50px;
    }

    .solution > div > div[b-ytfgxi0fjc] {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
    }

    .solution > div > div > p[b-ytfgxi0fjc] {
        text-align: center;
    }

    .solution > div > img[b-ytfgxi0fjc] {
        width: 400px;
    }

p[b-ytfgxi0fjc] {
    margin: 0;
}

.down-arrow[b-ytfgxi0fjc] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
}

.down-arrow img[b-ytfgxi0fjc] {
    width: 50px;
}

.title[b-ytfgxi0fjc] {
    font-size: 48px;
    text-align: right;
    margin-bottom: 30px;
}

.subtitle[b-ytfgxi0fjc], .subtext[b-ytfgxi0fjc] {
    max-width: 800px;
    text-align: right;
    margin-bottom: 30px;
    font-size: 20px;
}

.name[b-ytfgxi0fjc] {
    color: var(--primary-accent);
}

.num[b-ytfgxi0fjc] {
    color: white;
    background-color: var(--primary-accent);
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 10px 16px 10px 16px;
}
/* _content/Tessura.Frontend/Components/Pages/Login.razor.rz.scp.css */
.container[b-seq3uofd9n] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

img[b-seq3uofd9n] {
    width: 250px;
    margin-bottom: 20px;
}

.title[b-seq3uofd9n] {
    font-weight: 500;
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 0;
}

.subtitle[b-seq3uofd9n], p[b-seq3uofd9n] {
    font-weight: 200;
    color: var(--primary-text);
    margin-top: 4px;
    text-align: center;
}

p[b-seq3uofd9n] {
    font-size: 13px;
}

.login[b-seq3uofd9n] {
    width: 300px;
    box-shadow: rgba(0,0,0,0.1) 0 0 20px 1px;
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 16px 12px 16px;
}

label[b-seq3uofd9n] {
    display: block;
    font-weight: 200;
    color: var(--primary-text);
    font-size: 13px;
}

[b-seq3uofd9n] input {
    display: block;
    border: 1px solid ;
    border-radius: 8px;
}

.form[b-seq3uofd9n] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

a[b-seq3uofd9n] {
    color: var(--primary-accent);
    font-size: 13px;
    font-family: var(--font-family);
    margin-top: -10px;
    margin-bottom: 10px;
    font-weight: 400;
}

a:hover[b-seq3uofd9n] {
    cursor: pointer;
    text-decoration: underline;
}

.separator[b-seq3uofd9n] {
    height: 1px;
    width: 80%;
    background-color: var(--secondary-gray);
    margin-top: 28px;
    margin-bottom: 12px;
}

[b-seq3uofd9n] input {
    border: 1px solid var(--secondary-gray);
    outline-color: var(--primary-accent);
    border-radius: 8px;
    background-color: white;
    font-family: var(--font-family);
    color: var(--primary-text);
    padding: 8px;
    resize: none;
    transition: all 500ms;
    min-width: 250px;
    max-width: 300px;
    margin-top: 4px;
    margin-bottom: 8px;
}

    [b-seq3uofd9n] input:focus, [b-seq3uofd9n] input:focus-visible {
        outline-color: var(--primary-accent);
        border-color: var(--primary-accent);
    }

    [b-seq3uofd9n] input.invalid {
        outline: 1px solid red;
    }


@media (max-width: 400px) {
    .login[b-seq3uofd9n] {
        width: 100%;
    }
}
/* _content/Tessura.Frontend/Components/Pages/Share.razor.rz.scp.css */
.container[b-xv5r5kip5l] {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.page[b-xv5r5kip5l] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.inputs[b-xv5r5kip5l] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    max-width: 70vw;
}

p[b-xv5r5kip5l] {
    font-size: 48px;
    font-weight: 500;
    color: var(--primary-black);
    margin: 0;
    margin-bottom: 30px;
}

.subtext[b-xv5r5kip5l] {
    font-size: 18px;
    font-weight: 200;
    color: var(--primary-black);
    margin: 0;
    margin-bottom: 30px;
}

input[type=text][b-xv5r5kip5l], textarea[b-xv5r5kip5l] {
    border-radius: 8px;
    padding: 10px;
    border: none;
    background-color: var(--primary-gray);
    font-size: 15px;
    font-family: var(--font-family);
    transition: all 200ms;
}

    input[type=text]:focus-within[b-xv5r5kip5l], textarea:focus-within[b-xv5r5kip5l] {
        outline: 1px solid var(--primary-text);
    }

textarea[b-xv5r5kip5l] {
    align-self: stretch;
    resize: none;
}

button[b-xv5r5kip5l] {
    border: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10vh;
    background-color: var(--primary-gray);
    transition: all 200ms;
    font-family: var(--font-family);
    color: var(--primary-text);
    font-size: 18px;
    font-weight: 200;
    z-index: 10;
}

img[b-xv5r5kip5l] {
    width: 40px;
    align-self: center;
    margin-top: 40px;
}

.box-shadow[b-xv5r5kip5l] {
    box-shadow: rgba(0,0,0,0.1) 0 0 30px 1px;
}

.calendar-container[b-xv5r5kip5l] {
    width: 100%;
    height: fit-content;
    overflow-x: auto;
    margin-bottom: 10vh;
    max-width: 1000px;  
}

button:active[b-xv5r5kip5l] {
    background-color: var(--primary-accent);
    color: white;
    font-weight: 400;
}

.last-title[b-xv5r5kip5l] {
    margin-top: 100px;
    margin-bottom: 0;
}

.display-none[b-xv5r5kip5l] {
    display: none;
}

.translate-down[b-xv5r5kip5l] {
    animation: translate-down-b-xv5r5kip5l 500ms ease;
}

.appear[b-xv5r5kip5l] {
    animation: fade-in 500ms;
}

.disappear[b-xv5r5kip5l] {
    animation: fade-in 500ms reverse;
}

@keyframes translate-down-b-xv5r5kip5l {
    from {
        transform: translateY();
    }
    to {
        transform: translateY(-100%);
    }
}
/* _content/Tessura.Frontend/Components/Pages/StudentPage.razor.rz.scp.css */
.container[b-o7k51luebi] {
    height: 100vh;
    width: 100%;
    display: grid;
    grid-template-rows: 75px 220px minmax(0, 1fr);
    animation: fade-in 200ms;
}

.header-row[b-o7k51luebi] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    padding-left: 40px;
    padding-right: 15px;
}

.header-row p[b-o7k51luebi] {
    font-weight: 200;
    font-size: 25px;
    margin: 0;
    color: var(--primary-text);
    padding-bottom: 8px;
}

.logo[b-o7k51luebi] {
    width: 150px;
}

.top[b-o7k51luebi] {
    display: grid;
    grid-template-columns: 1fr 3fr;
}

.image[b-o7k51luebi] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
}

    .image img[b-o7k51luebi] {
        border-radius: 8px;
        background: rgb(185,196,255);
        background: linear-gradient(135deg, rgba(185,196,255,1) 0%, rgba(105,108,255,1) 100%);
        padding: 40px 30px 40px 30px;
        filter: brightness(1);
        width: 50px;
    }

.info[b-o7k51luebi] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
    gap: 15px;
}

.name-button-row[b-o7k51luebi] {
    display: flex;
    align-items: center;
    height: fit-content;
    width: fit-content;
    gap: 10px;
}

.name-button-row p[b-o7k51luebi] {
    font-size: 30px;
    font-weight: var(--h2-weight);
    margin: 0;
    margin-right: 10px;
}

button[b-o7k51luebi] {
    padding: 8px 10px 8px 10px;
    border-radius: 8px;
}

button img[b-o7k51luebi] {
    width: 12px;
    filter: brightness(0);
}

.prompt[b-o7k51luebi] {
    background-color: var(--primary-gray);
    border-radius: 8px;
    min-width: 200px;
    max-width: 400px;
    min-height: 78px;
}

.prompt p[b-o7k51luebi] {
    word-wrap: normal;
    font-size: 15px;
    font-weight: 200;
    color: var(--primary-text);
    margin: 8px;
}

.bottom[b-o7k51luebi] {
    width: 100%;
    height: 100%;
}

.back[b-o7k51luebi] {
    transition: all 200ms;
}

.back:hover[b-o7k51luebi] {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    cursor: pointer;
}

.gt[b-o7k51luebi] {
    color: var(--primary-text);
    font-size: 23px;
}
/* _content/Tessura.Frontend/Components/Pages/ViewSchedule.razor.rz.scp.css */
.container[b-lman1viafz] {
    height: 100vh;

    display: grid;
    grid-template-rows: 80px minmax(0, 1fr);
    animation: fade-in 200ms;
}

.hidden[b-lman1viafz] {
    display: none;
}

.top-row[b-lman1viafz] {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-left: 40px;
}

.top-row > p[b-lman1viafz] {
    font-family: var(--font-family);
    font-size: 30px;
    margin: 0;
    padding-top: 20px;
    min-width: 300px;
}

.buttons[b-lman1viafz] {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    gap: 10px;
}

.top-row img[b-lman1viafz] {
    width: 150px;
    margin-right: 15px;
    margin-top: 20px;
}

.calendar[b-lman1viafz] {
    height: 100%;
}
