/* static/css/result_tools_common.css */
/* 結果表示まわりの共通パーツ（CSV/印刷ボタンの横並び、表のアコーディオン開閉） */

.form-actions-row {
    display: flex;
    gap: 0.75rem;
}

.form-actions-row > a,
.form-actions-row > button {
    flex: 1 1 0;
    width: auto;
}

.table-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin: 0.875rem 0 0;
    border: 0.0625rem solid #dbe4f0;
    border-radius: 0.625rem;
    background: #f8fbff;
    color: #1f2a44;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
}

.table-toggle-btn:hover {
    background: #eef4ff;
}

.table-toggle-icon {
    transition: transform 0.15s ease;
}

.table-toggle-btn.is-open .table-toggle-icon {
    transform: rotate(180deg);
}

.table-wrap {
    margin-top: 0.875rem;
}

.table-wrap.is-collapsed {
    display: none;
}
