/* File Explorer */
.explorer-toolbar {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.path-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.path-bar span {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
}

.path-bar input {
    background: #000;
    border: 1px solid var(--border);
    color: var(--accent);
    font-family: 'JetBrains Mono';
    padding: 6px 12px;
    border-radius: 6px;
    flex: 1;
    font-size: 0.8rem;
}

.explorer-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    overflow-y: auto;
    max-height: 500px;
}

.explorer-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
}

.explorer-item:hover {
    background: rgba(99, 102, 241, 0.05);
    border-color: var(--accent);
}

.item-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.item-name {
    font-size: 0.75rem;
    font-weight: 700;
    word-break: break-all;
}

.item-size {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Exfiltrated Files */
.exfiltrated-list {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.asset-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.asset-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}

.asset-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.asset-actions {
    display: flex;
    gap: 8px;
}

.asset-actions button,
.asset-actions a {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    text-decoration: none;
    cursor: pointer;
}

/* Previews */
.preview-frame {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

.preview-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.text-preview {
    color: #4ade80;
    font-family: 'JetBrains Mono';
    font-size: 0.9rem;
}