body {
    background-image: url('https://taora.neocities.org/1711340015332825.png');
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Libre Baskerville', serif;
    color: #ffffff;
    margin: 0;
    font-size: 17px;
    padding: 20px;
}

.main-layout {
    display: flex;
    gap: 15px;
    max-width: 1500px;
    margin: 0 auto;
    height: 95vh;
}

.layout-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-basis: 50%;
}
/*here if i forgor*/
.layout-column:first-child { flex-basis: 60%; }
.layout-column:last-child { flex-basis: 40%; }

.panel {
    background-color: #2f3c4d;
    border-radius: 10px;
    padding: 15px;
    overflow: auto;
}

#panel-1 {
    height: 200px;
    padding: 0;
    flex-shrink: 0;
    overflow: hidden;
}

#main-text > :first-child {
    margin-top: 0;
}

#main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease-in-out;
}

#panel-2 {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    padding: 10px !important;
}

#scroll-content-wrapper {
    height: 100%;
    width: 100%;
    overflow-y: auto;
}

#scroll-content-wrapper::-webkit-scrollbar {
    display: none;
}

.scrollbar-line {
    position: absolute;
    background-color: #e3dec5;
    border-radius: 999px;
}

#scrollbar-top {
    top: 0;
    left: 0;
    height: 3px;
    width: 50px;
    
}

#scrollbar-bottom {
    bottom: 0;
    right: 0;
    height: 3px;
    width: 50px;
}

#scrollbar-left {
    top: 0;
    left: 0;
    width: 3px;
    height: 50px;
}

#scrollbar-right {
    bottom: 0;
    right: 0;
    width: 3px;
    height: 50px;
}

#panel-3 {
    height: 350px;
}
#panel-3 h3 {
    margin-top: 0;
}

.thumbnail {
    width: 96px;
    height: 144px;
    object-fit: cover;
    border-radius: 5px;
    border-color: #2f3c4d;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    transform: translateZ(0);
    backface-visibility: hidden;
}
.thumbnail:hover {
    transform: scale(1.1);
    border-color: #00000;
}

.thumbnail.selected-thumbnail {
    outline: 2px solid #e3dec5;
    outline-offset: 2px;
}

#panel-4 {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-content: flex-start;
    justify-content: space-evenly;
}

.thumbnail-spacer {
    width: 96px;
}

#download-link:hover #main-image {
    transform: scale(1.1);
}

#main-text .vr {
    display: block;
    width: 30rem;
    height: 2px;
    background-color: #e3dec5;
    border: none;
    margin: 1.5em auto;
}

#pagination-container .pagination-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    font-size: 0.8em;
    color: #fff;
}

#pagination-container .pagination-left,
#pagination-container .pagination-center,
#pagination-container .pagination-right {
    flex: 1;
}

#pagination-container .pagination-left { text-align: left; }
#pagination-container .pagination-center { text-align: center; }
#pagination-container .pagination-right { text-align: right; }

#pagination-container .pagination-right a {
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
}

#scroll-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    padding: 8px;
    box-sizing: border-box;
}

#main-text {
    flex: 1;
}

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: transparent;
    color: white;
    font-size: 0.8em;
    z-index: 100;
}

.chatbots-webring-widget {
    position: fixed;
    bottom: 0;
    right: 5px;
    z-index: 100;
}