/* /Components/DroneDetection/DroneDashboardComponent.razor.rz.scp.css */
.uav-dashboard[b-m455t1vgwe] {
    position: relative;
    height: calc(100vh - 160px);
    background: #0d1117;
    border-radius: 8px;
    overflow: hidden;
}

.uav-map[b-m455t1vgwe] {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* === Overlay panels === */
.uav-overlay[b-m455t1vgwe] {
    position: absolute;
    z-index: 500;
    background: rgba(13, 17, 23, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #e0e0e0;
}

.uav-panel-header[b-m455t1vgwe] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 0.92em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.uav-btn-icon[b-m455t1vgwe] {
    margin-left: auto;
    background: none;
    border: none;
    color: #aab;
    cursor: pointer;
    font-size: 1.1em;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background 0.15s;
}

.uav-btn-icon:hover[b-m455t1vgwe] {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* === Device list (top-left) === */
.uav-device-list[b-m455t1vgwe] {
    top: 12px;
    left: 12px;
    width: 220px;
    max-height: 50%;
}

.uav-device-chips[b-m455t1vgwe] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 6px;
    overflow-y: auto;
    max-height: 280px;
}

.uav-device-chip[b-m455t1vgwe] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.84em;
    transition: background 0.15s;
    border: 1px solid transparent;
}

.uav-device-chip:hover[b-m455t1vgwe] {
    background: rgba(255, 255, 255, 0.06);
}

.uav-device-chip.active[b-m455t1vgwe] {
    background: rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.35);
}

.uav-dot[b-m455t1vgwe] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-on[b-m455t1vgwe] {
    background: #66bb6a;
    box-shadow: 0 0 6px #66bb6a;
}

.dot-off[b-m455t1vgwe] {
    background: #ef5350;
}

/* === Detection panel (top-right) === */
.uav-detection-panel[b-m455t1vgwe] {
    top: 12px;
    right: 12px;
    width: 340px;
    max-height: calc(100% - 100px);
    display: flex;
    flex-direction: column;
}

.uav-stats-row[b-m455t1vgwe] {
    display: flex;
    gap: 8px;
    padding: 10px 14px;
}

.uav-stat-box[b-m455t1vgwe] {
    flex: 1;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.uav-stat-box.uav-stat-accent[b-m455t1vgwe] {
    border-color: rgba(0, 229, 255, 0.2);
    background: rgba(0, 229, 255, 0.05);
}

.uav-stat-num[b-m455t1vgwe] {
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1.1;
}

.uav-stat-label[b-m455t1vgwe] {
    font-size: 0.72em;
    color: #8899aa;
    margin-top: 2px;
}

/* === Device info === */
.uav-device-info[b-m455t1vgwe] {
    padding: 6px 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.uav-info-row[b-m455t1vgwe] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82em;
}

.uav-info-label[b-m455t1vgwe] {
    color: #778;
}

.uav-info-value[b-m455t1vgwe] {
    color: #ccd;
}

.text-online[b-m455t1vgwe] {
    color: #66bb6a !important;
}

.text-offline[b-m455t1vgwe] {
    color: #ef5350 !important;
}

/* === Tabs === */
.uav-tabs[b-m455t1vgwe] {
    display: flex;
    gap: 0;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.uav-tab[b-m455t1vgwe] {
    background: none;
    border: none;
    color: #8899aa;
    font-size: 0.78em;
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
    white-space: nowrap;
}

.uav-tab:hover[b-m455t1vgwe] {
    color: #ccd;
}

.uav-tab.active[b-m455t1vgwe] {
    color: #00e5ff;
    border-bottom-color: #00e5ff;
}

/* === Tab content === */
.uav-tab-content[b-m455t1vgwe] {
    flex: 1;
    overflow-y: auto;
    padding: 8px 10px;
    min-height: 0;
}

.uav-empty[b-m455t1vgwe] {
    text-align: center;
    padding: 24px;
    color: #556;
    font-size: 0.85em;
}

.uav-event-row[b-m455t1vgwe] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 5px;
    margin-bottom: 3px;
    font-size: 0.82em;
    transition: background 0.12s;
}

.uav-event-row:hover[b-m455t1vgwe] {
    background: rgba(255, 255, 255, 0.04);
}

.uav-event-row.event-danger[b-m455t1vgwe] {
    border-left: 3px solid #ef5350;
}

.uav-event-row.event-warning[b-m455t1vgwe] {
    border-left: 3px solid #ff9800;
}

.uav-ev-severity[b-m455t1vgwe] {
    font-size: 0.7em;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.sev-high[b-m455t1vgwe] {
    background: rgba(239, 83, 80, 0.2);
    color: #ef5350;
}

.sev-medium[b-m455t1vgwe] {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.sev-low[b-m455t1vgwe] {
    background: rgba(0, 229, 255, 0.15);
    color: #00e5ff;
}

.sev-ok[b-m455t1vgwe] {
    background: rgba(102, 187, 106, 0.2);
    color: #66bb6a;
}

.sev-fail[b-m455t1vgwe] {
    background: rgba(239, 83, 80, 0.2);
    color: #ef5350;
}

.uav-ev-name[b-m455t1vgwe] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #ccd;
}

.uav-ev-dist[b-m455t1vgwe] {
    color: #889;
    font-size: 0.9em;
    flex-shrink: 0;
}

.uav-ev-time[b-m455t1vgwe] {
    color: #667;
    font-family: monospace;
    font-size: 0.88em;
    flex-shrink: 0;
}

/* === Bottom bar === */
.uav-bottom-bar[b-m455t1vgwe] {
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    gap: 10px;
}

.uav-bottom-card[b-m455t1vgwe] {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(13, 17, 23, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.uav-bottom-title[b-m455t1vgwe] {
    font-weight: 600;
    font-size: 0.85em;
    color: #e0e0e0;
    margin-bottom: 8px;
}

.uav-bottom-stats[b-m455t1vgwe] {
    display: flex;
    gap: 20px;
}

.uav-mini-stat[b-m455t1vgwe] {
    display: flex;
    flex-direction: column;
}

.uav-mini-num[b-m455t1vgwe] {
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.1;
    color: #e0e0e0;
}

.uav-mini-label[b-m455t1vgwe] {
    font-size: 0.72em;
    color: #778;
}

.uav-type-dot[b-m455t1vgwe] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* === Badges === */
.uav-badge[b-m455t1vgwe] {
    font-size: 0.7em;
    padding: 2px 7px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #aab;
}

.uav-badge-online[b-m455t1vgwe] {
    background: rgba(102, 187, 106, 0.15);
    color: #66bb6a;
}

.uav-badge-band[b-m455t1vgwe] {
    background: rgba(0, 229, 255, 0.12);
    color: #00e5ff;
    margin-left: auto;
}

/* === Scrollbar === */
.uav-tab-content[b-m455t1vgwe]::-webkit-scrollbar,
.uav-device-chips[b-m455t1vgwe]::-webkit-scrollbar {
    width: 4px;
}

.uav-tab-content[b-m455t1vgwe]::-webkit-scrollbar-thumb,
.uav-device-chips[b-m455t1vgwe]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
}
/* /Components/STrack/STrackDashboardComponent.razor.rz.scp.css */
.strack-device-row[b-hwf8t3b098] {
    padding: 8px 12px;
    border-bottom: 1px solid #f1f3f5;
    cursor: pointer;
    transition: background 0.15s;
}

.strack-device-row:hover[b-hwf8t3b098] {
    background: #f8f9fa;
}

.strack-device-row.selected[b-hwf8t3b098] {
    background: #e7f1ff;
    border-left: 3px solid #0d6efd;
}

.strack-stat[b-hwf8t3b098] {
    background: #f8f9fa;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 0.85em;
}

.strack-stat-label[b-hwf8t3b098] {
    font-size: 0.7em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.strack-event-row[b-hwf8t3b098] {
    padding: 8px 12px;
    border-bottom: 1px solid #f1f3f5;
    border-left: 3px solid transparent;
}

.strack-severity-critical[b-hwf8t3b098] {
    border-left-color: #dc3545;
    background: #fff5f5;
}

.strack-severity-warning[b-hwf8t3b098] {
    border-left-color: #ffc107;
}

.strack-severity-info[b-hwf8t3b098] {
    border-left-color: #0dcaf0;
}
/* /Editors/CardView/Cards/ApplicationUserCard.razor.rz.scp.css */
/* ApplicationUser Card */
.ul-card-user .ul-card-user-avatar[b-3npv2ljkf5] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.ul-card-user .ul-card-avatar[b-3npv2ljkf5] {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.ul-card-email-value[b-3npv2ljkf5] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ul-card-verified-icon[b-3npv2ljkf5] {
    color: #4caf50;
    font-weight: 700;
    font-size: 0.85rem;
}

.ul-card-provider-badge[b-3npv2ljkf5] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ul-card-provider-icon[b-3npv2ljkf5] {
    font-size: 1rem;
    line-height: 1;
}

.ul-card-role-tags[b-3npv2ljkf5] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.ul-card-role-tag[b-3npv2ljkf5] {
    display: inline-flex;
    align-items: center;
    padding: 1px 8px;
    border-radius: 12px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: rgba(33, 150, 243, 0.1);
    color: #1565c0;
}

.ul-card-role-more[b-3npv2ljkf5] {
    background: rgba(0, 0, 0, 0.06);
    color: #78909c;
}
