
body{
    margin:0;
    background:#040b15;
    color:white;
    font-family:Arial,sans-serif;
}

.topbar{
    background:#08111f;
    padding:20px;
    border-bottom:1px solid #1e3a5f;
}

.logo{
    font-size:36px;
    color:#ff7a00;
    font-weight:bold;
    margin-bottom:20px;
}

.stats{
    display:flex;
    gap:20px;
}

.card{
    background:#0d1b2e;
    padding:20px;
    border-radius:12px;
    width:220px;
    box-shadow:0 0 15px rgba(0,150,255,0.2);
}

.card h2{
    margin:0;
    font-size:18px;
}

.card p{
    font-size:32px;
}

.green{
    color:#22ff88;
}

.yellow{
    color:#ffcc00;
}

.red{
    color:#ff4444;
}

main{
    display:grid;
    grid-template-columns:300px 1fr 300px;
    height:calc(100vh - 180px);
}

.left-panel,
.right-panel{
    background:#08111f;
    padding:20px;
    overflow:auto;
}

.center-panel{
    display:flex;
    justify-content:center;
    align-items:center;
}

.map-placeholder{
    width:90%;
    height:90%;
    border:2px dashed #1e4d7f;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:rgba(0,100,255,0.04);
}

.feed-item{
    background:#11233a;
    padding:15px;
    border-radius:10px;
    margin-bottom:15px;
    border-left:5px solid #00aaff;
}

.alert{
    padding:15px;
    border-radius:10px;
    margin-bottom:15px;
    font-weight:bold;
}

.alert.red{
    background:#401010;
}

.alert.yellow{
    background:#4a3900;
}

.alert.green{
    background:#14331e;
}
