.action-card{

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    background:#fff;

    border-radius:20px;

    padding:24px 18px;

    color:#212529;

    min-height:180px;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    transition:.25s;

}

.action-card:hover{

    transform:translateY(-3px);

    color:inherit;

}

.action-card h6{

    margin-top:18px;

    margin-bottom:6px;

    font-weight:700;

}

.action-card small{

    color:#6c757d;

}

.action-icon{

    width:72px;
    height:72px;

    border-radius:18px;

    display:flex;
    justify-content:center;
    align-items:center;

}

.action-icon i{

    font-size:32px;

}

/* Daily Visits */

.action-icon.visits{

    background:#E8F1FF;
    color:#2563EB;

}

/* Payments */

.action-icon.payments{

    background:#DCFCE7;
    color:#16A34A;

}

/* Sales */

.action-icon.sales{

    background:#FEF3C7;
    color:#D97706;

}

/* Inventory */

.action-icon.inventory{

    background:#F3E8FF;
    color:#7C3AED;

}

/* Customers */

.action-icon.customer{

    background:#FCE7F3;
    color:#DB2777;

}

/* Expenses */

.action-icon.expense{

    background:#FEE2E2;
    color:#DC2626;

}

/* Catalogue */

.action-icon.catalogue{

    background:#E0F2FE;
    color:#0284C7;

}

/* Reports */

.action-icon.reports{

    background:#ECFDF5;
    color:#059669;

}


.action-icon.products{

    background:#cebc59;
    color:#962e05;

}

.app-navbar{

    height:64px;

    background:white;

    border-bottom:1px solid var(--border);

    box-shadow:0 2px 12px rgba(0,0,0,.05);

}

.menu-btn,
.profile-btn{

    width:44px;

    height:44px;

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.4rem;

    color:var(--text);

}

.menu-btn:hover,
.profile-btn:hover{

    background:#F3F4F6;

}


.summary-card{

    background:#FAFAFA;

    border:1px solid var(--border);

    border-radius:16px;

    padding:16px 8px;
    height:stretch ;

}

.summary-value{

    font-size:1.1rem;

    font-weight:700;

    color:var(--primary);

}

.summary-label{

    font-size:.8rem;

    color:var(--muted);

    margin-top:4px;

}




.page-header{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:28px;

}

.page-icon{

    width:60px;

    height:60px;

    border-radius:18px;

    background:#FFF8E5;

    display:flex;

    justify-content:center;

    align-items:center;

}

.page-icon i{

    font-size:1.8rem;

    color:var(--primary);

}

.page-title{

    margin:0;

    font-size:1.6rem;

    font-weight:700;

}

.page-subtitle{

    margin:4px 0 0;

    color:var(--muted);

}