.amaax-dashboard{

    display:flex;

    gap:30px;

    align-items:flex-start;

}

.amaax-sidebar{

    width:260px;

    background:#fff;

    border:1px solid #ddd;

    border-radius:10px;

    padding:20px;

}

.amaax-dashboard-content{

    flex:1;

}

.amaax-dashboard-menu{

    list-style:none;

    margin:0;

    padding:0;

}

.amaax-dashboard-menu li{

    margin-bottom:8px;

}

.amaax-dashboard-menu li a{

    display:block;

    padding:12px 15px;

    text-decoration:none;

    color:#333;

    border-radius:8px;

}

.amaax-dashboard-menu li.active a{

    background:#2271b1;

    color:#fff;

}

.amaax-dashboard-menu li a:hover{

    background:#f5f5f5;

}

.amaax-dashboard-cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

    margin-bottom:30px;

}

.amaax-card{

    background:#fff;

    border:1px solid #ddd;

    border-radius:10px;

    padding:25px;

}

.amaax-card h3{

    margin-top:0;

}
.amaax-dashboard{
    display:flex;
    min-height:700px;
    background:#f5f7fa;
    border-radius:12px;
    overflow:hidden;
}

.amaax-sidebar{
    width:260px;
    background:#1f2937;
    color:#fff;
    padding:20px;
}

.amaax-logo{
    margin-bottom:30px;
    text-align:center;
}

.amaax-logo h3{
    color:#fff;
    margin:0;
}

.amaax-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.amaax-menu li{
    padding:14px 16px;
    margin-bottom:8px;
    border-radius:8px;
    cursor:pointer;
    transition:0.3s;
}

.amaax-menu li:hover{
    background:#374151;
}

.amaax-menu li.active{
    background:#2563eb;
}

.amaax-content{
    flex:1;
    padding:30px;
}

.amaax-header{
    margin-bottom:25px;
}

.amaax-header h2{
    margin:0;
    color:#111827;
}

.amaax-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:30px;
}

.amaax-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 2px 8px rgba(0,0,0,0.06);
}

.amaax-card h4{
    margin:0 0 12px;
    color:#6b7280;
    font-size:15px;
}

.amaax-card .number{
    font-size:32px;
    font-weight:700;
    color:#111827;
}

.amaax-panel{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 2px 8px rgba(0,0,0,0.06);
}

.amaax-tab{
    display:none;
}

.amaax-tab.active{
    display:block;
}

@media(max-width:900px){

    .amaax-dashboard{
        flex-direction:column;
    }

    .amaax-sidebar{
        width:100%;
    }

    .amaax-menu{
        display:flex;
        flex-wrap:wrap;
        gap:10px;
    }

    .amaax-menu li{
        margin-bottom:0;
    }
}