﻿.small_text {
    font-size: 12px;
}

.cursor_pointer {
    cursor: pointer
}

.toto{
    max-width:30px;
}

/* Double side bar : rail d'icones + panneau de detail */
.nav-shell {
    display: flex;
    height: 100%;
}

.nav-rail {
    width: 76px;
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-rail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 4px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.6);
    border-left: 3px solid transparent;
}

.nav-rail-item:hover {
    background-color: rgba(0, 0, 0, 0.06);
}

.nav-rail-item.active {
    color: var(--mud-palette-primary);
    background-color: rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--mud-palette-primary);
}

.nav-rail-item span {
    font-size: 11px;
    line-height: 1.1;
    text-align: center;
}

.nav-rail-icon-wrap {
    position: relative;
}

.nav-rail-badge {
    position: absolute;
    top: -6px;
    right: -10px;
}

.nav-detail {
    flex: 1;
    min-width: 0;
    padding-top: 8px;
}

.nav-detail-title {
    padding: 8px 16px 4px 16px;
    opacity: 0.7;
}