/* Radar Styles */
.radar-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.radar-header {
    display: flex;
    padding: 5px;
    background-color: #222;
    border-bottom: 1px solid #444;
    font-weight: bold;
    font-size: 11px;
}

.radar-col-name { flex: 1; }
.radar-col-dist { width: 40px; text-align: right; }
.radar-col-actions { width: 60px; text-align: center; }

.radar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    overflow-y: auto;
}

.radar-item {
    display: flex;
    align-items: center;
    padding: 4px 5px;
    border-bottom: 1px solid #333;
    font-size: 12px;
}

.radar-item:hover {
    background-color: #3a3a3a;
}

.radar-item.is-friend .radar-name {
    color: #00ff00;
}

.radar-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.radar-dist {
    width: 40px;
    text-align: right;
    color: #aaa;
    font-size: 11px;
}

.radar-actions {
    width: 60px;
    display: flex;
    justify-content: flex-end;
    gap: 2px;
}

.icon-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 2px;
}

.icon-btn:hover {
    color: white;
}

.icon-btn .material-icons {
    font-size: 16px;
}
