/* ファイル削除ボタンコンポーネント */

.file-remove-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 19px;
    height: 19px;
    padding: 2px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.file-remove-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

.file-remove-btn svg {
    width: 15px;
    height: 15px;
    display: block;
}

