.inner-login-content
{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.inner-login-box
{
    padding: 6%;
    background: white;
    border-top: 3px solid #FAC710;
    min-width: 320px;
}

.login-label
{
    color: #949494
}

.forget-password
{
    color: #FAC710;
    text-decoration: none;
}

.login-title
{
    color: #FAC710;
    font-size: 30px;
    font-weight: bold;
}

.alert-messages
{
    padding-bottom: 0;
}

.navbar-link-container
{
    display: flex;
    align-items: center;
    padding-left: 10px;
    margin-left: 20px;
    gap: 15px;
}

.navbar-link
{
    color: black;
    text-decoration: none;
}

.navbar-link-bordered
{
    border-left: 1px solid black;
}

.navbar-links
{
    width: 70%;
    display: flex;
}

.navbar-name
{
    font-size: 20px;
    font-weight: bold;
}

.search-button
{
    float: right;
    background: transparent;
    border: none;
    z-index: 100;
    margin-top: 2px;
}

.filter-button
{
    float: right;
    background: transparent;
    border: none;
    z-index: 100;
    margin-top: 2px;
}

#providers_filter
{
    display: none;
}

#tasks_filter {
    display: none;
}

.navbar-grey
{
    background: #C3C3C3;
}

.navbar-logo-details
{
    font-size: 24px;
    margin: auto 20px auto 0;
}

.navbar-logout
{
    font-size: 22px;
}

.navbar-logout a
{
    color: black;
    text-decoration: none;
}

.details-navbar-button
{
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 20px;
    border: 1px solid #BFBFBF;
}

/**
    Report Details
 */

@media only screen and (min-device-width: 768px) {
    .details-flex
    {
        display: flex;
    }

    .left
    {
        width: 70%;
    }

    .right
    {
        height: 85vh;
        width: 30%;

        position: fixed;
        right: 2%;

        padding: 1% 1%;
    }
}

@media only screen and (max-device-width: 767px) {
    .left
    {
        width: 100%;
    }

    .right
    {
        width: 100%;
        padding: 1% 1%;
    }
}

.rating-active
{
    font-size: 20px;
    margin-right: 5px;
    color: #798283;
}

.details-textarea
{
    height: 20vh;
}

.status-badge
{
    padding: 2% 6%;
    border-radius: 5px;
    width: fit-content;
    font-weight: bold;
    color: white;
}

.badge-not-graded
{
    background-color: #AAB2B6;
}

.badge-rejected
{
    background-color: #F82F3E;
}

.badge-accepted
{
    background-color: #32D04B;
}

.badge-excused
{
    background-color: #3F494F;
}

.task-table table{
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    color: #333;
}

.task-table th,
.task-table td {
    padding: 0.75rem;
    vertical-align: top;
    border: 1px solid black;
}

.task-table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid black;
}

.task-table tbody + tbody {
    border-top: 2px solid black
}

/**
    Task Uploads
 */
.task-uploads {
    display: flex;
    flex-wrap: wrap;
    min-width: 100%;
}

.upload-container
{
    display: flex;
    background-color: #f8f8f8;
    padding: 8px 12px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #585F4F;
    cursor: pointer;

    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgba(7, 43, 184, 0.20);
    margin-bottom: 1%;
    text-decoration: none;
    outline: none;
}

.upload-container:hover
{
    color: #585F4F;
}

.upload-icon
{
    font-size: 24px;
    max-width: fit-content;
}

.upload-info
{
    display: flex;
    flex-direction: column;
    width: max-content;
    max-width: 80%;
    flex: 1 0 0;
}

.upload-name
{
    font-size: 16px;
    overflow: hidden;
}

.upload-specifications
{
    font-size: 11px;
    color: #989797;
}

.download-icon
{
    max-width: fit-content;
    font-size: 24px;
}

@media screen and (min-width: 1025px) {
    .upload-container
    {
        min-width: 32%;
        width: 32%;
        margin-left: 1%;
    }
}

@media screen and (max-width: 1024px) {
    .upload-container
    {
        min-width: 100%;
    }
}

/**
 Spinner
 */

.loader-container
{
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    background: #000;
    opacity: 25%;
    z-index: 100;
}

.spinner
{
    width: 64px;
    height: 64px;
    border: 8px solid;
    border-color: #3d5af1 transparent #3d5af1 transparent;
    border-radius: 50%;
    animation: spin-anim 1.2s linear infinite;
}

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