/* Custom PDF Books - Minimal Fallback Styles */

/* These are fallback styles - main styles are inline in shortcodes for reliability */

.cpb-download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    transition: all 0.3s;
}

.cpb-download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.5);
    color: #fff;
}

