.radar-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    background: #1e1e1e;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #333;
    flex-wrap: wrap;
}
.search-input {
    flex: 1;
    min-width: 250px;
    padding: 10px;
    background: #121212;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
    font-family: monospace;
}
.search-input:focus {
    outline: none;
    border-color: #03dac6;
}
.filter-group {
    display: flex;
    gap: 15px;
    align-items: center;
    background: #121212;
    padding: 10px 15px;
    border-radius: 4px;
    border: 1px solid #444;
}
.live-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #03dac6;
    border-radius: 50%;
    margin-left: 10px;
    animation: pulse 1.5s infinite;
}
.live-indicator.paused {
    background-color: #f6c036;
    animation: none;
}
.live-indicator.offline {
    background-color: #cf6679;
    animation: none;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(3, 218, 198, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(3, 218, 198, 0); }
    100% { box-shadow: 0 0 0 0 rgba(3, 218, 198, 0); }
}
.table-header-sortable {
    cursor: pointer;
    user-select: none;
}
.table-header-sortable:hover {
    color: #03dac6;
}
.geo-flag {
    width: 20px;
    height: 14px;
    margin-right: 8px;
    vertical-align: middle;
}
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}
.modal-overlay.active {
    display: flex;
}
.modal-content {
    background: #1e1e1e;
    width: 600px;
    max-width: 90%;
    border-radius: 8px;
    border: 1px solid #444;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
}
.modal-header {
    background: #121212;
    padding: 15px 20px;
    border-bottom: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h2 {
    margin: 0;
    color: #03dac6;
    font-size: 18px;
}
.close-modal {
    background: none;
    border: none;
    color: #888;
    font-size: 24px;
    cursor: pointer;
}
.close-modal:hover {
    color: #cf6679;
}
.modal-body {
    padding: 20px;
}
.data-grid {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    margin-bottom: 20px;
    font-family: monospace;
    font-size: 14px;
}
.data-label {
    color: #888;
    font-weight: bold;
}
.data-value {
    color: #fff;
    word-break: break-all;
}
.modal-footer {
    padding: 15px 20px;
    background: #121212;
    border-top: 1px solid #444;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}