/* Archive styling */

body{
    display: flex;
    align-items: center;
    /* margin: 0; */
    flex-direction: column;
    /* border: 2px solid rgb(251, 255, 27); */
    height: 100%;
}

/* .archiveHeader{
    font-family: "Open Sauce One", sans-serif;
    font-size: 1rem;
    color: white;
} */

/* .archiveNav{
     border: 2px solid rgb(226, 226, 226); 
} 
*/
.archiveNumberContainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
    /* border: 2px solid blue; */
    padding: 1em;
    
}

.archiveNumberContainer > div {
    /* border: 2px solid rgb(112, 209, 0); */
    padding: 10px;
    background-color:#eaff82;
    /* text-shadow: black 1px 1px 2px; */
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 56px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: transform 120ms ease, background-color 120ms ease;
    font-family: 'League Spartan', sans-serif;
    color:#1e1e1e;
}

@media (hover: hover) {
    .archiveNumberContainer > div:hover {
        background-color: #717b42;
        cursor: pointer;
        transform: translateY(-3px);
    }
}

.archiveNumberContainer > div.clicked {
    background-color: #717b42;
    cursor: pointer;
}

.archiveNumberContainer > div.archive-completed {
    background-color: #4ade80;
    color: #1a3a1a;
}

.archiveNumberContainer > div.archive-completed.clicked {
    background-color: #22c55e;
}

.ztNumber {
    text-decoration: none;
    color: white!important;
    margin: 0 0.5rem;
}
.archiveBottomRow{
    display: inline;
}
.previousArchive,.nextArchive, .previousDayQuestions,.nextDayQuestions{
    all: unset;
    color: white;
    cursor: pointer;
    width: 2em;
    padding: 0.5em;
    font-family: "League Spartan", sans-serif!important;
    font-weight: bold;
    font-size: 1.5rem;
}
.previousArchive:disabled,.nextArchive:disabled,.previousDayQuestions:disabled, .nextDayQuestions:disabled{
    color: grey;
    cursor: default;
    font-family: "League Spartan", sans-serif!important;
    font-weight: bold;
    font-size: 1.5rem;

}
.renderBottomRow{
    display: flex;
    /* border: 2px solid blue; */
    width: min(95%, 22rem);
    justify-content: space-between;
    align-items: center;
}
.rBRprev {
    margin-right: auto;
}
.rBRnext {
    margin-left: auto;
}

.render{
    display: none;
    width: 100%;
}

/* #logo{
   border: 2px solid blue;
   margin-top: 1rem;
} */