.epaper-container {
    max-width: 1200px;
    margin: 0 auto;
}

.epaper-main {
    text-align: center;
    margin-bottom: 15px;
}

.epaper-main img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
}

.epaper-toolbar {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.epaper-toolbar button {
    padding: 8px 15px;
    cursor: pointer;
}

.epaper-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.epaper-thumbnails img {
    width: 120px;
    height: auto;
    cursor: pointer;
    border: 2px solid transparent;
}

.epaper-thumbnails img.active {
    border-color: #0073aa;
}

.epaper-counter {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
}

@media (max-width:768px){

    .epaper-thumbnails img{
        width:80px;
    }

}


.epaper-calendar{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

.epaper-calendar th,
.epaper-calendar td{
    border:1px solid #ddd;
    padding:10px;
    text-align:center;
}

.epaper-calendar a{
    display:block;
    font-weight:bold;
    text-decoration:none;
}

.epaper-available{
    color:#0073aa;
    font-weight:bold;
}

.epaper-archive-header{
    margin-bottom:20px;
}


.epaper-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.epaper-fullscreen img {
    max-width: 95%;
    max-height: 95%;
    cursor: zoom-out;
}

.epaper-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    z-index: 1000000;
}