/**
 * E-Paper Action Bar Stylesheet
 * 100% Responsive for Download, Print, and Share Buttons
 */

.epaper-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    flex-wrap: wrap;
    gap: 15px;
}

.action-group-left, .action-group-right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-action {
    padding: 8px 16px;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: opacity 0.3s, transform 0.2s;
}

.btn-action:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Button Specific Colors */
.btn-download { background: #0d47a1; }
.btn-print { background: #424242; }
.btn-fb { background: #1877F2; }
.btn-wa { background: #25D366; }

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .epaper-action-bar {
        flex-direction: column;
        justify-content: center;
    }
    .action-group-left, .action-group-right {
        width: 100%;
        justify-content: center;
    }
    .btn-action {
        flex: 1; /* Makes buttons equal width on mobile */
        min-width: 120px;
    }
}