/* PDF Download Button Widget */

.tae-pdf-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tae-pdf-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
}

.tae-pdf-label {
    font-weight: 500;
    flex: 1;
    transition: color 0.2s ease;
}

.tae-pdf-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid #22c55e;
    flex-shrink: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
