/* Radial Dial & File List - owned by UIControlsManager.js */

.radial-dial {
    text-align: center;
    cursor: grab;
    user-select: none;
}

.radial-dial:active {
    cursor: grabbing;
}

.dial-progress {
    transition: stroke-dashoffset 0.1s ease;
}

.file-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4em 0.6em;
    border-radius: 4px;
    margin-bottom: 0.3em;
    background: #232323;
    transition: background 0.2s;
    min-height: 32px;
}

.file-list-item .file-label {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
    cursor: pointer;
}

.file-list-item .file-label span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.file-remove-btn {
    background: none;
    border: none;
    color: #ff6b6b;
    font-size: 1.1em;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 2px;
    transition: background 0.2s;
    flex-shrink: 0;
    margin-left: 8px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-remove-btn:hover {
    background: #444;
    color: #ff8a8a;
}
