/* Frontend Styles for Print Invoice */

.print-invoice-download-btn {
    background-color: #0073aa !important;
    color: white !important;
    text-decoration: none !important;
    padding: 8px 15px !important;
    border-radius: 3px !important;
    display: inline-block !important;
    font-weight: normal !important;
    border: none !important;
    cursor: pointer !important;
}

.print-invoice-download-btn:hover {
    background-color: #005a87 !important;
    color: white !important;
}

.print-invoice-download-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #0073aa;
    margin: 20px 0;
}

.print-invoice-download-section h3 {
    margin-top: 0;
    color: #333;
}

.print-invoice-download-section p {
    margin-bottom: 0;
}

/* My Account Orders page styles */
.woocommerce-MyAccount-content .woocommerce-orders-table .order-actions .print-invoice-download-btn {
    font-size: 12px;
    padding: 4px 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .print-invoice-download-section {
        padding: 15px;
    }
    
    .print-invoice-download-btn {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        margin-top: 10px !important;
    }
}
