#main-grid {
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

#main-grid>.container:first-child {
    background-color: var(--color-canvas);
    width: 100%;
}

form .tile {
    padding: 0;
}

form .input {
    background-color: var(--color-body-bg) !important;
    width: 100%;
}

#main-grid>.container:first-child .card {
    background-color: white;
    padding: 2rem;
}

.quiz {
    display: flex;
    flex-direction: column;
}

.quiz.locked {
    cursor: not-allowed
}

.quiz .tile {
    background-color: var(--color-canvas);
    border-radius: var(--radius);
}

.quiz.selected {
    border: thin solid var(--color-primary);
}

.selected-quiz {
    justify-self: center;
    width: 100%;
}

.selected-quiz .grid {
    align-items: center;
    gap: 3rem;
    grid-template-columns: 1fr;
}

@media only screen and (max-width: 1023px) {
    .selected-quiz .grid {
        grid-template-columns: 1fr;
    }
}

.selected-quiz img {
    width: 100%;
    aspect-ratio: 1;
    max-width: 400px;
    justify-self: center;
    object-fit: contain;
    border-radius: var(--radius);
}

.selected-quiz .content>.tile:first-child {
    padding: 0;
}

.selected-quiz .content>.tile:first-child .chip {
    width: fit-content;
}

.selected-quiz .content>.tile:first-child hr {
    flex: 1;
    height: 0;
    border-color: transparent;
}

.selected-quiz .content .tile>.tile .material-symbols-rounded {
    vertical-align: middle;
}



.selected-quiz hr {
    margin: 2rem 0;
}

.selected-quiz .btn-group a:first-child {
    min-width: 200px;
}




.selected-quiz .records .record .material-symbols-rounded {
    vertical-align: middle;
}

.selected-quiz .records .record hr {
    flex: 1
}
.selected-quiz .records .record table {
    table-layout: fixed;
    width: 100%;
}

.selected-quiz .records .record td,
.selected-quiz .records .record th {
    border: 1px solid var(--color-divider);
    padding: 8px;
    width: 50%;
    overflow: auto;

}

.selected-quiz .records .record tr {
    background-color: var(--color-divider);
    text-align: center;
}
.selected-quiz .records .tile:last-child {
    justify-self: end;
}