body{
background:#f4f6f9;
font-family:Arial;
}

.navbar{
background:#0d6efd;
z-index:1100;
}

.sidebar{
position:fixed;
top:0;
left:-250px;
width:250px;
height:100vh;
background:white;
box-shadow:2px 0 10px rgba(0,0,0,0.1);
padding-top:60px;
transition:0.3s;
z-index:99999;
}

.sidebar.show{
left:0;
}

.sidebar a{
display:block;
padding:12px 20px;
text-decoration:none;
color:#333;
}

.sidebar a:hover{
background:#f0f0f0;
}

.content{
margin-top:70px;
position:relative;
z-index:1;
}

/* MENU CARD */
.menu-card {
    background: white;
    border-radius: 15px;
    padding: 30px 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.menu-icon {
    font-size: 38px;
    margin-bottom: 10px;
}

.menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}