.now-reading-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    gap: 30px;
    width: 85%;
    margin-top: 10px;
}
.reading-now-label {
    display: none;
}
.now-reading {
    height: 200px;
    width: 450px;
    padding: 15px;
    border-radius: 30px;
    
    display: flex;
    justify-content: start;
    align-items: stretch;
    flex-direction: row;
    gap: 20px;
    position: relative;

    border: 2px solid rgba(59, 59, 59, 0.5);
    background-color: rgba(255, 255, 255, 0.05);
}

.now-reading img {
    border: 1px dashed rgb(110, 110, 110);
    border-radius: 15px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 6px 6px; /* Adjust the size of the stripes */

    width: 132px;

}

.now-reading-info {
    flex-grow: 1;
    font-family: Lexend, sans-serif;
    position: relative;
    display: flex;
    justify-content: start;
    align-items: stretch;
    flex-direction: column;
}
.now-reading-info h4 {
    padding: 0;
    margin: 0;
    font-weight: 200;
    text-shadow: 0 0 4px black;
}
.info-row {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    font-size: medium;
    align-items: center;
}
.info-row p {
    padding: 0;
    margin: 0;
    font-family: inherit;
}
.now-reading .material-symbols-outlined {
    font-size: 21px;
    color: rgb(213, 213, 213);
    margin-right: 6px;
}
.now-reading p {
    margin: 0;
    padding: 0;
    font-family: inherit;
    color: rgb(213, 213, 213);
    font-weight: 200;
}
.now-reading b {
    font-weight: 400;
}
.page-progress {
    text-align: center;
    justify-self: flex-end;
    
    position: relative;
    display: inline;
    flex-direction: column;
    bottom: 0;
    right: 0;
    padding-bottom: 5px;
    padding-top: 3px;

    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 6px 6px; /* Adjust the size of the stripes */
    border-radius: 10px;
    border-bottom-right-radius: 15px;
    border: 1px dashed rgb(110, 110, 110);
    overflow: hidden;
}
.page-progress-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    gap: 10px;
}
.page-progress-container p {
    font-size: 18px;
    font-weight: 300;
    font-family: Lexend, sans-serif;
    opacity: 0.5;
    color: white;
}
.page-count {
    width: 100px;
    display: flex;
    align-items: center;
}
.left-pg {
    justify-content: flex-end;
}
.right-pg {
    justify-content: flex-start;
}
.page-progress h4 {
    font-size: 32px;
    text-shadow: 0 0 6px black;
}



@media (max-width: 850px) {
    .now-reading img {
        display: none;
    }
    .now-reading {
        height: unset;
    }
    .page-progress {
        margin-top: 15px;
        border-bottom-left-radius: 15px;
    }
}