/* /assets/css/epaper-style.css */

/* --- Frontend E-Paper List --- */
.epaper-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.epaper-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.epaper-card .card-img-top {
    aspect-ratio: 1 / 1.414; /* A4 paper ratio */
    object-fit: cover;
    background-color: #f8f9fa;
}

.epaper-card .card-title {
    font-size: 1rem;
    font-weight: bold;
}

.epaper-card .card-text {
    font-size: 0.85rem;
}

.epaper-card .card-footer {
    padding: 0.75rem 1rem;
}


/* --- E-Paper Viewer Page --- */
body.epaper-viewer-body {
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevent scrollbars on the body */
}

.epaper-viewer-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0;
}

.viewer-header, .viewer-footer {
    flex-shrink: 0;
    z-index: 10;
}

.pdf-embed-container {
    flex-grow: 1;
    overflow: auto; /* Allow scrolling for the PDF content */
}

#pdf-embed {
    min-height: 100%;
}

.share-buttons a {
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 0 5px;
}
.share-buttons .btn-success { background-color: #25D366; border-color: #25D366; }
.share-buttons .btn-primary { background-color: #1877F2; border-color: #1877F2; }
.share-buttons .btn-info { background-color: #0088CC; border-color: #0088CC; }

