/**
 * Print Post Plugin Styles
 */

 .print-post-wrapper {
    margin: 20px 0;
    text-align: center;
    clear: both;
}

.print-post-button {
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    color: #333;
}

.print-post-button:hover {
    background-color: #005a87;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.print-post-button:active {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.print-post-button:focus {
}

.print-icon {
    font-size: 18px;
    line-height: 1;
}

.print-text {
    line-height: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .print-post-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .print-icon {
        font-size: 16px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .print-post-button {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .print-post-button {
        transition: none;
    }
    
    .print-post-button:hover {
        transform: none;
    }
}

