.k3ms-wrapper{
max-width:1200px;
margin:auto;
font-family:system-ui;
}

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

.k3ms-title{
font-size:26px;
font-weight:700;
color:#0f2b41;
}

.k3ms-nav{
background:#0e6769;
color:white;
border:none;
padding:10px 18px;
border-radius:8px;
cursor:pointer;
font-size:18px;
}

.k3ms-nav{
display:inline-flex;
align-items:center;
justify-content:center;
width:40px;
height:40px;
font-size:20px;
text-decoration:none;
}

.k3ms-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
}

.k3ms-day{
background:white;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
padding:18px;
}

.k3ms-day-title{
font-size:20px;
font-weight:700;
margin-bottom:12px;
color:#0e6769;
display:flex;
align-items:center;
gap:6px;
}

.k3ms-meal{
border-radius:10px;
padding:12px;
margin-bottom:10px;
background:#f6f8f9;
}

.k3ms-meal-header{
display:flex;
align-items:center;
gap:6px;
margin-bottom:4px;
}

.k3ms-meal-label{
font-size:12px;
text-transform:uppercase;
color:#666;
}

.k3ms-meal-content{
font-size:15px;
font-weight:600;
color:#222;
}

.k3ms-allergenes{
margin-top:6px;
}

.k3ms-allergene{
background:#eef3f5;
padding:4px 8px;
border-radius:6px;
font-size:11px;
margin-right:4px;
display:inline-block;
}

/* couleurs repas */

.k3ms-entree{
border-left:4px solid #4CAF50;
}

.k3ms-plat{
border-left:4px solid #FF9800;
}

.k3ms-accompagnement{
border-left:4px solid #8BC34A;
}

.k3ms-laitier{
border-left:4px solid #03A9F4;
}

.k3ms-dessert{
border-left:4px solid #E91E63;
}

/* mobile */

@media(max-width:900px){

.k3ms-grid{
grid-template-columns:1fr;
}

.k3ms-day{
margin-bottom:20px;
}

}