<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Download Button for GeneratePress Theme */
.download-timer-btn {
    display: inline-block;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff !important;
    border: none;
    border-radius: 3px; /* Match GeneratePress default button radius */
    padding: 12px 24px;
    font-size: 15px; /* Match GeneratePress button font size */
    font-family: inherit; /* Use theme's font */
    font-weight: 600;
    line-height: 1.6;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-decoration: none !important;
    text-align: center;
    margin: 10px 0;
    text-transform: none; /* Prevent uppercase if theme has that */
}

.download-timer-btn:hover {
    background: linear-gradient(135deg, #5a0db5 0%, #1a65e8 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    color: #fff !important;
}

/* Make it full-width on mobile */
@media (max-width: 768px) {
    .download-timer-btn {
        display: block;
        width: 100%;
    }
}

/* Match GeneratePress button focus state */
.download-timer-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 117, 252, 0.5);
}</pre></body></html>