*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#0f1724;

    color:white;

    font-family:Segoe UI,sans-serif;

}

.app{

    display:flex;

    min-height:100vh;

}

.sidebar{

    width:260px;

    background:#131c2b;

    border-right:1px solid #222f44;

}

.logo{

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    font-size:22px;

    font-weight:700;

    border-bottom:1px solid #222f44;

}

.logo i{

    color:#3b82f6;

}

.sidebar nav{

    display:flex;

    flex-direction:column;

    padding:20px;

}

.sidebar nav a{

    color:#b6c2d2;

    text-decoration:none;

    padding:14px 16px;

    border-radius:10px;

    margin-bottom:8px;

    transition:.25s;

}

.sidebar nav a i{

    margin-right:12px;

}

.sidebar nav a:hover{

    background:#1b2b43;

    color:white;

}

.sidebar nav .active{

    background:#2563eb;

    color:white;

}

.main{

    flex:1;

    display:flex;

    flex-direction:column;

}

.topbar{

    height:72px;

    background:#131c2b;

    border-bottom:1px solid #222f44;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 30px;

}

.top-right{

    display:flex;

    align-items:center;

    gap:10px;

}

.status{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#22c55e;

}

.content{

    padding:30px;

}

.page-title{

    font-size:32px;

    font-weight:700;

}
.dashboard{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.card{
    background:#182334;
    border:1px solid #27364e;
    border-radius:14px;
    padding:22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
}

.card h6{
    color:#95a8bf;
    margin-bottom:10px;
}

.card h2{
    font-size:30px;
    margin-bottom:8px;
}

.card small{
    color:#7fb4ff;
}

.card i{
    font-size:42px;
    color:#3b82f6;
}

.grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
}

.panel{
    background:#182334;
    border:1px solid #27364e;
    border-radius:14px;
    padding:20px;
}

.large{
    min-height:380px;
}

.wide{
    grid-column:1/3;
}

.panel-header{
    margin-bottom:20px;
}

.panel h5{
    margin:0;
}

canvas{
    width:100% !important;
    height:300px !important;
}

.table-dark,
.feed{
    width:100%;
    border-collapse:collapse;
}

.table-dark td,
.feed td,
.feed th{
    padding:12px;
    border-bottom:1px solid #27364e;
    color:#d7e4f3;
}

.feed th{
    color:#8fa4bd;
}

@media(max-width:1200px){

.grid{

grid-template-columns:1fr;

}

.wide{

grid-column:auto;

}

}
.sidebar{

    width:240px;

}

.logo{

    font-size:18px;

    padding:0 20px;

    justify-content:flex-start;

}

.sidebar nav a{

    display:flex;

    align-items:center;

    gap:14px;

    font-size:15px;

    font-weight:500;

}

.top-actions{

    display:flex;

    align-items:center;

    gap:20px;

}

.proxy-status{

    display:flex;

    align-items:center;

    gap:10px;

}

.top-icon{

    display:flex;

    align-items:center;

    gap:8px;

    color:#d7e4f3;

    position:relative;

}

.badge-dot{

    width:8px;

    height:8px;

    border-radius:50%;

    background:#ef4444;

    position:absolute;

    top:-2px;

    right:-2px;

}

.profile{

    display:flex;

    align-items:center;

    gap:10px;

}

.avatar{

    width:36px;

    height:36px;

    border-radius:50%;

    background:#3b82f6;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

}