body{
margin:0;
background:#f4f6fb;
font-family:Arial,Helvetica,sans-serif;
}

.mts-dashboard{
display:flex;
min-height:100vh;
}

.mts-sidebar{
width:250px;
background:#111827;
color:#fff;
padding:30px;
}

.mts-logo{
font-size:24px;
margin-bottom:40px;
font-weight:bold;
}

.mts-sidebar nav{
display:flex;
flex-direction:column;
gap:10px;
}

.mts-sidebar a{
color:#fff;
text-decoration:none;
padding:14px;
border-radius:8px;
transition:.3s;
}

.mts-sidebar a:hover{
background:#2563eb;
}

.mts-main{
flex:1;
padding:40px;
}

.mts-topbar{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:40px;
}

.mts-user{
display:flex;
align-items:center;
gap:15px;
}

.mts-cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-bottom:30px;
}

.mts-card{
background:#fff;
padding:30px;
border-radius:14px;
box-shadow:0 5px 18px rgba(0,0,0,.06);
}

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

.mts-panel{
background:#fff;
padding:30px;
border-radius:14px;
box-shadow:0 5px 18px rgba(0,0,0,.06);
}






.mts-panel{
background:#fff;
padding:25px;
border-radius:12px;
margin-top:20px;
box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.mts-table{
width:100%;
border-collapse:collapse;
margin-top:20px;
}

.mts-table th,
.mts-table td{
padding:12px;
border-bottom:1px solid #ddd;
text-align:left;
}

.mts-table th{
background:#f4f4f4;
}

input{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:8px;
}

button{
padding:12px 25px;
background:#2563eb;
color:#fff;
border:none;
border-radius:8px;
cursor:pointer;
}

button:hover{
background:#1d4ed8;
}
