/* =========================
    CONTAINER GLOBAL
   ========================= */
.etablissement-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    color: #1f1f1f;
    line-height: 1.6;
}

.etab-nom {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: #0a3e57;
}

/* =========================
      MACHINES
   ========================= */
.machines-card {
    margin-top: 30px;
}

.machines-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #0c567a;
}

/* =========================
    MACHINE BLOCK
   ========================= */
.machine-block {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.machine-block h4 {
    margin-bottom: 15px;
    color: #0c79ad;
    font-size: 1.2rem;
    font-weight: 700;
}

/* TABLE */
.machine-block table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.95rem;
}

.machine-block th {
    background: #eaf6fc;
    width: 260px;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #dbe7f0;
    color: #0a3e57;
}

.machine-block td {
    padding: 10px 14px;
    background: #ffffff;
    border-bottom: 1px solid #eef2f6;
}

/* Documents */
.doc-list {
    list-style: none;
    padding-left: 0;
}

.doc-list li {
    margin-bottom: 6px;
}

.doc-list a {
    color: #0d8fcb;
    font-weight: 600;
}

/* =========================
    UTILISATEURS
   ========================= */
.users-card {
    margin-top: 40px;
}

.users-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #0c567a;
}

.users-block {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.user-row {
    padding: 12px 0;
    border-bottom: 1px solid #eef2f6;
}

.user-row:last-child {
    border-bottom: none;
}

.user-row p {
    margin: 3px 0;
}

/* Scroll si plus de 2 utilisateurs */
.users-block {
    max-height: 160px;   /* hauteur pour ~2 utilisateurs */
    overflow-y: auto;
    scrollbar-width: thin;        /* Firefox */
    scrollbar-color: #c8d4de #f1f5f9; /* Firefox */
}

/* Style scrollbar Chrome / Edge */
.users-block::-webkit-scrollbar {
    width: 6px;
}

.users-block::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.users-block::-webkit-scrollbar-thumb {
    background: #c8d4de;
    border-radius: 10px;
}

/* Table des machines masquée par défaut */
.machine-block table {
    display: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    border-radius: 6px;
}

/* Curseur sur le titre pour indiquer que c'est cliquable */
.machine-block h4 {
    cursor: pointer;
    position: relative;
}

/* Petite flèche indicatrice */
.machine-block h4::after {
    content: '▼';
    position: absolute;
    right: 0;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Quand la table est visible, faire tourner la flèche */
.machine-block.expanded h4::after {
    transform: rotate(-180deg);
}
