﻿.cover-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden; 
    margin: 0 auto; 
}

    .cover-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    .cover-wrapper:hover img {
        transform: scale(1.08);
    }

#magazine .page {
    width: 1000px !important;
    height: 800px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

#magazine canvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #f0f0f0;
    padding: 10px;
}

.issue-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    font-size: 16px;
    color: #333;
}

    .issue-loading-overlay .loading-text {
        margin-top: 12px;
        font-weight: 500;
    }

.progress {
    height: 40px !important;
}

.progress-bar {
    font-size: 16px;
    line-height: 40px;
}