/* ============================================================
 *  NETWORK VIEW
 * ============================================================ */
.network-search-row {
    position: relative;
    margin-bottom: 20px;
    max-width: 500px;
}

.net-results {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 100%;
    margin-top: 4px;
}

.net-selected-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    min-height: 48px;
    align-items: flex-start;
    align-content: flex-start;
}

.net-list-hint {
    color: var(--text-faint);
    font-style: italic;
    font-size: 0.88rem;
    width: 100%;
    padding: 8px 0;
}

.net-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-soft);
    border: 1.5px solid var(--accent);
    border-radius: 20px;
    padding: 6px 12px 6px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-self-text);
    max-width: 240px;
}

.net-chip-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.net-chip-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--accent-self-text);
    font-size: 1.1rem;
    line-height: 1;
    padding: 0 6px;
    opacity: 0.6;
    flex-shrink: 0;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.net-chip-remove:hover { opacity: 1; }

.network-actions {
    margin-bottom: 20px;
}

.net-render-btn {
    width: auto;
    padding: 13px 32px;
    font-size: 1rem;
}

.net-progress-area {
    margin-top: 8px;
    max-width: 500px;
}

.progress-bar-track {
    height: 8px;
    background: var(--progress-bg);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    width: 0%;
    transition: width 0.2s ease;
}

.net-progress-label {
    font-size: 0.84rem;
    color: var(--text-soft);
}
