.erp-dashboard{
    padding:15px;
}

.erp-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.erp-header h2{
    margin:0;
}

.erp-logout-btn{
    background:#dc3545;
    color:#fff;
    padding:8px 15px;
    border-radius:8px;
    text-decoration:none;
}

.erp-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.erp-card{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    text-align:center;
}

.erp-card h3{
    font-size:16px;
    margin-bottom:10px;
}

.erp-count{
    font-size:28px;
    font-weight:bold;
}

.erp-add-order-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#28a745;
    color:#fff;
    border-radius:50%;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    z-index:9999;
}

@media(max-width:768px){

    .erp-cards{
        grid-template-columns:1fr 1fr;
    }

}