/* ==================== PDF出力ボタン ==================== */
.export-pdf-button {
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 238px;
    text-align: left;
    transition: all 0.3s ease;
}

.results-pdf-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: stretch;
}

.export-pdf-button--generation {
    background: #c98700;
    box-shadow: 0 4px 12px rgba(201, 135, 0, 0.24);
}

.export-pdf-button--proposal {
    background: var(--funas-blue);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.24);
}

.export-pdf-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.export-pdf-button:active {
    transform: translateY(0);
}

.export-pdf-button i {
    font-size: 19px;
}

.export-pdf-button span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.export-pdf-button strong {
    font-size: 15px;
    line-height: 1.2;
}

.export-pdf-button small {
    color: rgba(255,255,255,.82);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .export-pdf-button {
        width: 100%;
        min-width: 0;
        padding: 10px 14px;
        font-size: 14px;
    }
}
