﻿.fu-root {
    font-family: inherit;
}

.fu-drop {
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    background: #fafafa;
    cursor: pointer;
}

    .fu-drop.dragover {
        background: #f0f9ff;
        border-color: #60a5fa;
    }

.fu-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 8px;
}

.fu-error {
    color: #b91c1c;
    font-size: 12px;
    margin-top: 6px;
}

.fu-list {
    margin-top: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.fu-row {
    display: grid;
    grid-template-columns: 28px 1fr 120px 140px;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
}

    .fu-row:nth-child(even) {
        background: #fafafa;
    }

.fu-head {
    background: #f8fafc;
    font-weight: 600;
}

.fu-ext {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
}

.fu-name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.fu-size {
    font-variant-numeric: tabular-nums;
    color: #475569;
}

.fu-actions-col {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.fu-btn {
    border: 1px solid #cbd5e1;
    background: white;
    padding: 4px 8px;
    border-radius: 8px;
    cursor: pointer;
}

    .fu-btn:disabled {
        opacity: .6;
        cursor: default;
    }

.fu-lock {
    color: #64748b;
    font-size: 12px;
}


[hidden], template {
    display: none !important;
}