:root
{
    --fs-xl: 2rem;
    --fs-700: 1.6rem;
    --fs-600: 1.3rem;
    --fs-500: 1.1rem;
    --fs-400: 1rem;
    --fs-300: 0.8rem;
    --fs-200: 0.7rem;
}


html, body
{
    overflow: hidden;
    height: 100vh;
    top:0;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: calc(16px + .7vmin);
    color: #ffffff;
    box-sizing: border-box;
    cursor: default;
}


h1,h2,h3,h4,h5,h6, p, ul
{
    margin: 0;
    padding: 0;
}

.material-symbols-outlined
{
    font-size: inherit;
}
select
{
    border: none;
    outline: none;
}

ul
{
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}

a
{
    color: inherit; 
    cursor: auto; 
    text-decoration: none; 
}

.background-container 
{
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; 
    
    background-size: cover;
    background-image: url('../images/previous_dailys_background_images/previous_dailys_image.png');
}

.color-overlay
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.582); 
}

#main-content-parent
{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.103);

    display: flex;
    align-items: center;
    flex-direction: column;

    overflow: auto;
}

#previous-dailys-parent-element
{
    min-width: min(650px,90vw);
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#zg-header-parent
{
    width: 100%;
    margin-top: 2%;
}
#zg-logo-a
{
    display: flex;
    justify-content: center;
    align-items: center;
}

#zg-logo
{
    max-width: 80%;
    max-height: 80%;

    cursor: pointer;
}

#other-pages-button-parent
{
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 5%;
    margin-bottom: 5rem;
}
.other-page-button
{
    background-color: black;
    border-radius: .2rem;
    padding: .3rem;
    flex: 1;
    max-width: 165px;
    min-height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: .4rem;

    cursor: pointer;
}
.other-page-text
{
    font-size: var(--fs-300);
    font-style: italic;
}

#daily-stats-parent
{
    display: flex;
    align-items: center;
    width: 100%;
    margin: 2% 0% 2% 0%;
}

.daily-stats-text
{
    flex: 1;
    text-align: center;
    font-style: italic;
}

#replay-dailys-container
{
    background-color: #00000082;
    width: 100%;
    flex: 1;
    overflow:auto;
    list-style-type:none;

    border-width: .1rem;
    border-style: solid;
    border-color: white;
    box-shadow: rgba(255, 255, 255, 0.35) 0px .1rem .3rem;

    min-height: min(475px,60vh); 
    max-height: 65vh;
}

.replay-daily-list-item
{
    width: 100%;
    display: flex;
    gap: 1%;
    align-items: center;
    justify-content: space-evenly;

    margin-bottom: .1rem;
}
.replay-daily-list-item * 
{
    flex: 1;
}

.play-daily-button-parent
{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-daily-button
{
    background-color: black;
    text-align: center;
    height: 80%;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.is-todays-daily-text
{
    color: green;
    font-style: italic;
    font-size: var(--fs-200);
}

.play-daily-text
{
    cursor: pointer;
    padding: 0.2rem;
}

.daily-score
{
    text-align: center;
    font-size: var(--fs-300);
}

.daily-was-played-text
{
    background-color: black;
    text-align: center;
    padding: 0.2rem;

    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
}

#list-view-options-parent
{
    width: 100%;
}

#sort-list-view-parent
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    margin-top: .25rem;
}

#sorting-by-span
{
    font-size: var(--fs-300);
}

#page-switching-parent
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .1rem;
    width: 100%;
}

#page-number-parent
{
    flex: .35;
    text-align: center;
}
#page-number-info
{
    font-style: italic;
    font-size: var(--fs-300);
}
.page-button
{
    padding: 0.3rem 0.6rem 0.3rem 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.page-button-icon
{
    font-size: var(--fs-600);
    user-select: none;
}

#previous-dailys-status-message-container
{
    font-size: var(--fs-400);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 1rem;
}
#previous-dailys-status-message
{
    font-style: italic;
}

.previous-dailys-loader-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid #FFF;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 

 
 @keyframes dots-7ar3yq {
    20% {
       background-position: 0%   0%, 50%  50%,100%  50%;
    }
 
    40% {
       background-position: 0% 100%, 50%   0%,100%  50%;
    }
 
    60% {
       background-position: 0%  50%, 50% 100%,100%   0%;
    }
 
    80% {
       background-position: 0%  50%, 50%  50%,100% 100%;
    }
 }

[hidden]
{
    display: none !important;
}