:root{
    --hyro-blue:#2563EB;
    --hyro-purple:#7C3AED;
    --hyro-pink:#EC4899;
    --hyro-success:#16A34A;
    --hyro-warning:#F59E0B;
    --hyro-danger:#DC2626;
    --hyro-bg:#F8FAFC;
    --hyro-card:#FFFFFF;
    --hyro-text:#111827;
    --hyro-muted:#64748B;
    --hyro-border:#E5E7EB;
    --hyro-sidebar:#0F172A;
    --hyro-radius:14px;
    --hyro-shadow:0 10px 30px rgba(0,0,0,.08);
}

*{box-sizing:border-box}

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:var(--hyro-bg);
    color:var(--hyro-text);
}

.hyro-topbar{
    height:68px;
    background:linear-gradient(90deg,var(--hyro-blue),var(--hyro-purple),var(--hyro-pink));
    color:white;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 28px;
}

.hyro-brand h2{
    margin:0;
    font-size:22px;
}

.hyro-brand span{
    font-size:12px;
    opacity:.9;
}

.hyro-layout{
    display:flex;
    min-height:calc(100vh - 68px);
}

.hyro-sidebar{
    width:250px;
    background:var(--hyro-sidebar);
    color:white;
    padding:24px 14px;
}

.hyro-sidebar a{
    display:block;
    color:white;
    text-decoration:none;
    padding:12px 14px;
    border-radius:10px;
    margin-bottom:6px;
    font-size:14px;
}

.hyro-sidebar a:hover,
.hyro-sidebar a.active{
    background:rgba(255,255,255,.12);
}

.hyro-main{
    flex:1;
    padding:28px;
}

.hyro-page-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
}

.hyro-page-title h1{
    margin:0;
    font-size:26px;
}

.hyro-page-title p{
    margin:5px 0 0;
    color:var(--hyro-muted);
}

.hyro-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
    gap:18px;
}

.hyro-card{
    background:var(--hyro-card);
    border-radius:var(--hyro-radius);
    box-shadow:var(--hyro-shadow);
    padding:20px;
    border:1px solid var(--hyro-border);
}

.hyro-card-label{
    color:var(--hyro-muted);
    font-size:13px;
    margin-bottom:10px;
}

.hyro-card-number{
    font-size:34px;
    font-weight:800;
}

.hyro-card-small{
    margin-top:8px;
    font-size:13px;
    color:var(--hyro-muted);
}

.hyro-section{
    margin-top:26px;
}

.hyro-table{
    width:100%;
    border-collapse:collapse;
    background:white;
    border-radius:var(--hyro-radius);
    overflow:hidden;
    box-shadow:var(--hyro-shadow);
}

.hyro-table th,
.hyro-table td{
    padding:14px;
    text-align:left;
    border-bottom:1px solid var(--hyro-border);
    font-size:14px;
}

.hyro-table th{
    background:#F1F5F9;
    color:#334155;
}

.hyro-badge{
    padding:5px 11px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
    display:inline-block;
}

.hyro-badge-success{background:#DCFCE7;color:#166534}
.hyro-badge-danger{background:#FEE2E2;color:#991B1B}
.hyro-badge-info{background:#DBEAFE;color:#1E40AF}
.hyro-badge-warning{background:#FEF3C7;color:#92400E}

.hyro-devbar{
    margin-top:24px;
    background:#111827;
    color:#D1D5DB;
    border-radius:12px;
    padding:12px 16px;
    font-size:12px;
}

@media(max-width:768px){
    .hyro-layout{flex-direction:column}
    .hyro-sidebar{width:100%;min-height:auto}
    .hyro-page-title{display:block}
}
