/* Coach Manager — Menu dynamique du site */

.cm-account-menu {
align-items: center;
display: flex;
flex-wrap: wrap;
gap: 9px;
}

.cm-account-menu--stacked {
align-items: stretch;
flex-direction: column;
}

.cm-account-menu__link {
border: 1px solid currentColor;
border-radius: 999px;
display: inline-flex;
font-size: 13px;
font-weight: 800;
justify-content: center;
line-height: 1.2;
overflow: hidden;
padding: 10px 18px;
position: relative;
text-decoration: none !important;
transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.cm-account-menu__link.cm-account-link--primary {
background: linear-gradient(105deg, #9f741d 0%, #d6b353 34%, #f6df91 50%, #c6962e 72%, #a7791d 100%);
background-size: 220% 100%;
border-color: #e6c76e;
box-shadow: inset 0 1px 0 rgba(255, 248, 205, 0.8), 0 8px 22px rgba(154, 108, 17, 0.2);
color: #0b0b0c;
}

.cm-dynamic-menu-item.cm-account-link--primary > a {
background: linear-gradient(105deg, #9f741d 0%, #d6b353 34%, #f6df91 50%, #c6962e 72%, #a7791d 100%);
background-size: 220% 100%;
border: 1px solid #e6c76e;
border-radius: 999px;
box-shadow: inset 0 1px 0 rgba(255, 248, 205, 0.8), 0 8px 22px rgba(154, 108, 17, 0.2);
color: #0b0b0c !important;
font-weight: 800;
padding-left: 17px !important;
padding-right: 17px !important;
}

.cm-account-menu__link:hover {
background-position: 100% 0;
box-shadow: inset 0 1px 0 rgba(255, 248, 205, 0.9), 0 12px 28px rgba(154, 108, 17, 0.28);
opacity: 1;
transform: translateY(-2px);
}
