/* Release Notes PDF Downloader v5 — button styles */

.rnpdf-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 1.25em 0;
}

.rnpdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    text-decoration: none;
    transition: opacity 0.15s ease, transform 0.1s ease;
    cursor: pointer;
    white-space: nowrap;
}

.rnpdf-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    text-decoration: none;
}

.rnpdf-btn:active {
    transform: translateY(0);
    opacity: 1;
}

/* Single download icon — rendered by CSS only, not duplicated in PHP */
.rnpdf-btn-pdf::before {
    content: '\2B07';   /* ⬇ downwards black arrow */
    font-size: 13px;
}