.dash-title {
    font-family: sans-serif;
    color: rgb(10,50,220);
}

.dashboard-main-container {
    min-height: 94vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-dashboard-div {
    width: 94vw;
    height: 6vh;
    min-height: 34px;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    margin-top: 2vh;
    border-bottom: 2px solid grey;
}

.bottom-dashboard-div {
    width: 94vw;
    height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-select-div {
    width: 33%;
    height: 100%;
    padding-top: 2vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

.view-results-title {
    font-family: sans-serif;
    color: rgb(10,50,220);
}

.student-select-div {
    width: 33%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(160,160,180);
    border-right: 2px solid black;
    overflow-y: scroll;
}

.form-info-div {
    width: 33%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

.unlocked-btn-form {
    margin-bottom: 24px;
}

.unlocked-form-button {
    padding: 4px 18px;
    margin: 4px;
    background: rgb(220,160,180);
    font-family: sans-serif;
    font-weight: bold;
    box-shadow: 2px 2px 4px black;
    transition-duration: 330ms;
}

.unlocked-form-button:hover {
    box-shadow: 1px 1px 3px black;
    transform: translateY(1px);
    cursor: pointer;
}

.student-results-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid grey;
    width: 98%;
}

.student-info {
    width: 33%;
    text-align: center;
    border-right: 1px solid grey;
}

.results-open-form {
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-student-result-btn {
    background: rgb(100,100,100);
    border: none;
    padding: 2px 8px;
    font-family: sans-serif;
    color: white;
    transition-duration: 180ms;
}

.submit-student-result-btn:hover {
    transform: translateY(-1px);
    cursor: pointer;
    box-shadow: 2px 2px 3px black;
}

.purchase-forms-btn {
    margin-top: 2vh;
    margin-bottom: 3vh;
    padding: 1px 8px;
    background: rgb(240,240,240);
    color: rgb(10,10,50);
    font-family: sans-serif;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 2px 2px 4px black;
    border-radius: 6px;
    transition-duration: 200ms;
}

.purchase-forms-btn:hover {
    box-shadow: 1px 1px 3px black;
    transform: translateY(1px);
    cursor: pointer;
}

.owned-form-div {
    width: 96%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8%;
}

.owned-form-top-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    border-bottom: none;
}

.owned-form-name-title {
    font-family: sans-serif;
    margin-top: 2px;
    margin-bottom: 8px;
}

.minor-expiration-date {
    margin: 4px;
    font-style: italic;
    font-weight: bold;
}

.owned-form-bottom-section {
    width: 100%;
    display: flex;
    justify-content: center;
    border: 1px solid black;
}

.bottom-section-left-div {
    width: 60%;
    border-right: 1px solid black;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottom-section-right-div {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dash-down-btn {
    text-decoration: none;
    color: white;
    background: rgb(30,30,160);
    padding: 4px 8px;
    font-weight: bold;
    font-family: sans-serif;
    border-radius: 8px;
    position: relative;
    transition-duration: 220ms;
}

.dash-down-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    box-shadow: 2px 2px 4px black;
    opacity: 0;
    transition-duration: 220ms;
}

.dash-down-btn:hover {
    transform: translateY(-1px);
}

.dash-down-btn:hover::after {
    opacity: 1;
}

/* This code is for the results pages */

#pdf-prnt-info {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    width: 80vw;
    max-width: 80vw;
}

#pdf-prnt-instructions {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    width: 80vw;
    max-width: 80vw;
}

