.file-status {
    margin-left: 10px;
    /* 選択ボタンとの間隔 */
    display: inline-block;
    /* spinning wheel の表示調整 */
}

.file-status.processing {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    border-top-color: #007bff;
    animation: spin 1s linear infinite;
}

.file-status.processing::after {
    content: " 処理中";
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}