/* GLOBAL */

body{
background:#0f172a;
color:#e5e7eb;
font-family:system-ui,-apple-system,Segoe UI,Roboto;
}

/* NAVBAR */

.navbar{
background:#111827;
border-bottom:1px solid #1f2937;
}

/* CARDS */

.card{
background:#111827;
border:1px solid #1f2937;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

/* TABLE */

table{
background:#111827;
border-radius:8px;
overflow:hidden;
}

table th{
background:#1f2937;
color:#9ca3af;
}

table td{
border-color:#1f2937;
}

/* BUTTONS */

button,
.btn{
background:#2563eb;
border:none;
border-radius:6px;
padding:8px 14px;
}

button:hover,
.btn:hover{
background:#1d4ed8;
}

/* INPUT */

input,
select,
textarea{
background:#0f172a;
border:1px solid #374151;
color:#e5e7eb;
border-radius:6px;
}

input:focus{
border-color:#2563eb;
outline:none;
}

/* SIDEBAR */

.sidebar{
background:#020617;
border-right:1px solid #1f2937;
}

/* LINKS */

a{
color:#60a5fa;
}

a:hover{
color:#93c5fd;
}