2026-02-10 09:34:22 -07:00
|
|
|
/* Tactical Intelligence Dashboard Styles */
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
font-family: 'Outfit', system-ui, sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
background-color: #0A0E27;
|
|
|
|
|
color: #E4E8F1;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Grid background effect */
|
|
|
|
|
.grid-bg {
|
|
|
|
|
background-image:
|
|
|
|
|
linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
|
|
|
|
|
linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
|
|
|
|
|
background-size: 20px 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Monospace font for technical data */
|
|
|
|
|
.mono {
|
|
|
|
|
font-family: 'JetBrains Mono', monospace;
|
2026-01-27 04:08:35 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-10 09:34:22 -07:00
|
|
|
/* Glowing border effect */
|
|
|
|
|
.glow-border {
|
|
|
|
|
position: relative;
|
|
|
|
|
border: 1px solid rgba(0, 217, 255, 0.3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.glow-border::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -1px;
|
|
|
|
|
left: -1px;
|
|
|
|
|
right: -1px;
|
|
|
|
|
bottom: -1px;
|
|
|
|
|
background: linear-gradient(45deg, transparent, rgba(0, 217, 255, 0.1), transparent);
|
|
|
|
|
border-radius: inherit;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity 0.3s;
|
2026-01-27 04:08:35 +00:00
|
|
|
pointer-events: none;
|
2026-02-10 09:34:22 -07:00
|
|
|
z-index: -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.glow-border:hover::before {
|
|
|
|
|
opacity: 1;
|
2026-01-27 04:08:35 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-10 09:34:22 -07:00
|
|
|
/* Scanning line animation */
|
|
|
|
|
.scan-line {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
height: 2px;
|
|
|
|
|
background: linear-gradient(90deg,
|
|
|
|
|
transparent,
|
|
|
|
|
rgba(0, 217, 255, 0.8),
|
|
|
|
|
transparent
|
|
|
|
|
);
|
|
|
|
|
animation: scan 3s ease-in-out infinite;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes scan {
|
|
|
|
|
0%, 100% {
|
|
|
|
|
transform: translateY(-100%);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
50% {
|
|
|
|
|
transform: translateY(2000%);
|
|
|
|
|
opacity: 0.5;
|
2026-01-27 04:08:35 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-10 09:34:22 -07:00
|
|
|
/* Card hover effects */
|
|
|
|
|
.intel-card {
|
|
|
|
|
background: linear-gradient(135deg, #131937 0%, #1E2749 100%);
|
|
|
|
|
border: 1px solid rgba(0, 217, 255, 0.1);
|
|
|
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.intel-card::after {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: -100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background: linear-gradient(90deg,
|
|
|
|
|
transparent,
|
|
|
|
|
rgba(0, 217, 255, 0.05),
|
|
|
|
|
transparent
|
|
|
|
|
);
|
|
|
|
|
transition: left 0.5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.intel-card:hover {
|
|
|
|
|
border-color: rgba(0, 217, 255, 0.4);
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
box-shadow: 0 8px 24px rgba(0, 217, 255, 0.15);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.intel-card:hover::after {
|
|
|
|
|
left: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Status badges with glow */
|
|
|
|
|
.status-badge {
|
|
|
|
|
position: relative;
|
|
|
|
|
font-family: 'JetBrains Mono', monospace;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
letter-spacing: 0.5px;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
padding: 0.25rem 0.75rem;
|
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
|
border: 1px solid;
|
|
|
|
|
display: inline-flex;
|
2026-01-27 04:08:35 +00:00
|
|
|
align-items: center;
|
2026-02-10 09:34:22 -07:00
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-badge::before {
|
|
|
|
|
content: '';
|
|
|
|
|
width: 6px;
|
|
|
|
|
height: 6px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
animation: pulse-glow 2s ease-in-out infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-critical {
|
|
|
|
|
background: rgba(255, 51, 102, 0.1);
|
|
|
|
|
border-color: rgba(255, 51, 102, 0.4);
|
|
|
|
|
color: #FF3366;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-critical::before {
|
|
|
|
|
background: #FF3366;
|
|
|
|
|
box-shadow: 0 0 10px #FF3366;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-high {
|
|
|
|
|
background: rgba(255, 184, 0, 0.1);
|
|
|
|
|
border-color: rgba(255, 184, 0, 0.4);
|
|
|
|
|
color: #FFB800;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-high::before {
|
|
|
|
|
background: #FFB800;
|
|
|
|
|
box-shadow: 0 0 10px #FFB800;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-medium {
|
|
|
|
|
background: rgba(0, 217, 255, 0.1);
|
|
|
|
|
border-color: rgba(0, 217, 255, 0.4);
|
|
|
|
|
color: #00D9FF;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-medium::before {
|
|
|
|
|
background: #00D9FF;
|
|
|
|
|
box-shadow: 0 0 10px #00D9FF;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-low {
|
|
|
|
|
background: rgba(0, 255, 136, 0.1);
|
|
|
|
|
border-color: rgba(0, 255, 136, 0.4);
|
|
|
|
|
color: #00FF88;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-low::before {
|
|
|
|
|
background: #00FF88;
|
|
|
|
|
box-shadow: 0 0 10px #00FF88;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Button styles */
|
|
|
|
|
.intel-button {
|
|
|
|
|
position: relative;
|
|
|
|
|
font-family: 'JetBrains Mono', monospace;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
letter-spacing: 0.5px;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
padding: 0.625rem 1.25rem;
|
|
|
|
|
border-radius: 0.375rem;
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
border: 1px solid;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.intel-button::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background: rgba(255, 255, 255, 0.1);
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
transition: width 0.5s, height 0.5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.intel-button:hover::before {
|
|
|
|
|
width: 300px;
|
|
|
|
|
height: 300px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.intel-button-primary {
|
|
|
|
|
background: rgba(0, 217, 255, 0.15);
|
|
|
|
|
border-color: #00D9FF;
|
|
|
|
|
color: #00D9FF;
|
2026-01-27 04:08:35 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-10 09:34:22 -07:00
|
|
|
.intel-button-primary:hover {
|
|
|
|
|
background: rgba(0, 217, 255, 0.25);
|
|
|
|
|
box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
|
2026-01-27 04:08:35 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-10 09:34:22 -07:00
|
|
|
.intel-button-danger {
|
|
|
|
|
background: rgba(255, 51, 102, 0.15);
|
|
|
|
|
border-color: #FF3366;
|
|
|
|
|
color: #FF3366;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.intel-button-danger:hover {
|
|
|
|
|
background: rgba(255, 51, 102, 0.25);
|
|
|
|
|
box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.intel-button-success {
|
|
|
|
|
background: rgba(0, 255, 136, 0.15);
|
|
|
|
|
border-color: #00FF88;
|
|
|
|
|
color: #00FF88;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.intel-button-success:hover {
|
|
|
|
|
background: rgba(0, 255, 136, 0.25);
|
|
|
|
|
box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Input fields */
|
|
|
|
|
.intel-input {
|
|
|
|
|
background: rgba(19, 25, 55, 0.5);
|
|
|
|
|
border: 1px solid rgba(0, 217, 255, 0.2);
|
|
|
|
|
color: #E4E8F1;
|
|
|
|
|
padding: 0.625rem 1rem;
|
|
|
|
|
border-radius: 0.375rem;
|
|
|
|
|
font-family: 'JetBrains Mono', monospace;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.intel-input:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
border-color: #00D9FF;
|
|
|
|
|
box-shadow: 0 0 0 2px rgba(0, 217, 255, 0.1);
|
|
|
|
|
background: rgba(19, 25, 55, 0.8);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.intel-input::placeholder {
|
|
|
|
|
color: rgba(228, 232, 241, 0.3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Stat cards */
|
|
|
|
|
.stat-card {
|
|
|
|
|
background: linear-gradient(135deg, rgba(19, 25, 55, 0.8) 0%, rgba(30, 39, 73, 0.6) 100%);
|
|
|
|
|
border: 1px solid rgba(0, 217, 255, 0.15);
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.stat-card::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
height: 2px;
|
|
|
|
|
background: linear-gradient(90deg, transparent, #00D9FF, transparent);
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Modal overlay */
|
|
|
|
|
.modal-overlay {
|
|
|
|
|
background: rgba(10, 14, 39, 0.95);
|
|
|
|
|
backdrop-filter: blur(8px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Scrollbar styling */
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
background: #131937;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
background: rgba(0, 217, 255, 0.3);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: rgba(0, 217, 255, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Fade in animation */
|
|
|
|
|
.fade-in {
|
|
|
|
|
animation: fade-in 0.5s ease-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes fade-in {
|
2026-01-27 04:08:35 +00:00
|
|
|
from {
|
2026-02-10 09:34:22 -07:00
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateY(10px);
|
2026-01-27 04:08:35 +00:00
|
|
|
}
|
|
|
|
|
to {
|
2026-02-10 09:34:22 -07:00
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Pulse glow animation */
|
|
|
|
|
@keyframes pulse-glow {
|
|
|
|
|
0%, 100% {
|
|
|
|
|
box-shadow: 0 0 5px currentColor;
|
|
|
|
|
}
|
|
|
|
|
50% {
|
|
|
|
|
box-shadow: 0 0 15px currentColor;
|
2026-01-27 04:08:35 +00:00
|
|
|
}
|
|
|
|
|
}
|
2026-02-10 09:34:22 -07:00
|
|
|
|
|
|
|
|
/* Data table styling */
|
|
|
|
|
.data-row {
|
|
|
|
|
border-bottom: 1px solid rgba(0, 217, 255, 0.05);
|
|
|
|
|
transition: all 0.2s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.data-row:hover {
|
|
|
|
|
background: rgba(0, 217, 255, 0.03);
|
|
|
|
|
border-bottom-color: rgba(0, 217, 255, 0.2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Loading spinner */
|
|
|
|
|
.loading-spinner {
|
|
|
|
|
border: 2px solid rgba(0, 217, 255, 0.1);
|
|
|
|
|
border-top-color: #00D9FF;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
animation: spin 1s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
|
to { transform: rotate(360deg); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Tooltip */
|
|
|
|
|
.tooltip {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tooltip::after {
|
|
|
|
|
content: attr(data-tooltip);
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 100%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
padding: 0.5rem 0.75rem;
|
|
|
|
|
background: #1E2749;
|
|
|
|
|
border: 1px solid rgba(0, 217, 255, 0.3);
|
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
transition: opacity 0.3s;
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
font-family: 'JetBrains Mono', monospace;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tooltip:hover::after {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|