*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;
}

:root{
    --bspc-primary:#2F9D94;
    --bspc-primary-dark:#267f79;
    --bspc-bg:#EEF2F6;
    --bspc-white:#FFFFFF;
    --bspc-text:#2D3436;
    --bspc-border:#E2E8F0;
    --bspc-shadow:0 8px 24px rgba(0,0,0,.06);
}

body{
    background:var(--bspc-bg);
    color:var(--bspc-text);
}

.layout{
    display:flex;
    min-height:100vh;
}

.sidebar{
    width:220px;
    background:linear-gradient(180deg,#2F9D94,#278781);
    color:#fff;
    box-shadow:4px 0 20px rgba(0,0,0,.08);
}

.logo{
    height:110px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ffffff;
    color:#2F9D94;
    font-size:48px;
    font-weight:800;
    border-bottom:1px solid #e5e7eb;
}

.menu{
    padding:15px 0;
}

.menu-title{
    padding:18px 24px 8px;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    color:rgba(255,255,255,.55);
}

.menu a{
    display:block;
    color:#fff;
    text-decoration:none;
    padding:11px 24px;
    font-size:15px;
    border-left:4px solid transparent;
    transition:.2s;
}

.menu a:hover{
    background:rgba(255,255,255,.08);
    border-left:4px solid #ffffff;
}

.main{
    flex:1;
    padding:24px;
}

.header{
    background:#fff;
    padding:24px 30px;
    border-radius:18px;
    box-shadow:var(--bspc-shadow);
    margin-bottom:24px;
}

.header h1{
    font-size:34px;
    margin-bottom:4px;
}

.header p{
    color:#64748b;
}

.cards{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:16px;
    margin-bottom:24px;
}

.card{
    background:#fff;
    border-radius:16px;
    padding:18px;
    min-height:100px;
    border:1px solid var(--bspc-border);
    box-shadow:var(--bspc-shadow);
}

.card h3{
    font-size:13px;
    color:#64748b;
    margin-bottom:10px;
}

.card .value{
    font-size:34px;
    font-weight:800;
    color:var(--bspc-primary);
}

.dashboard-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.bloc{
    background:#fff;
    border-radius:18px;
    padding:20px;
    border:1px solid var(--bspc-border);
    box-shadow:var(--bspc-shadow);
}

.full{
    grid-column:1 / span 2;
}

.bloc h2{
    font-size:18px;
    color:var(--bspc-primary);
    margin-bottom:16px;
}

.table-dashboard{
    width:100%;
    border-collapse:collapse;
}

.table-dashboard th{
    background:var(--bspc-primary);
    color:#fff;
    text-align:left;
    padding:12px;
    font-size:14px;
}

.table-dashboard td{
    padding:12px;
    border-bottom:1px solid #edf2f7;
    font-size:14px;
}

.table-dashboard tr:hover{
    background:#f8fafc;
}

.pipeline{
    display:none;
}

table{
    width:100%;
    border-collapse:collapse;
}

th{
    background:var(--bspc-primary);
    color:#fff;
}

@media(max-width:1600px){

.cards{
    grid-template-columns:repeat(4,1fr);
}

}

@media(max-width:1200px){

.cards{
    grid-template-columns:repeat(2,1fr);
}

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

.full{
    grid-column:auto;
}
.titre-etude{
    text-align:center;
    font-size:42px;
    font-weight:800;
    color:#2D3436;
    margin:0 0 40px 0;
    width:100%;
}
/* ==========================================================
   ETUDE TECHNIQUE BSPC
   ========================================================== */

.main h1{
    font-size:36px;
    margin-bottom:25px;
    color:#2D3436;
}

.main h2{
    font-size:24px;
    color:#2F9D94;
    margin-bottom:20px;
    padding-bottom:10px;
    border-bottom:2px solid #e5e7eb;
}

.fiche-bloc{
    background:#ffffff;
    border-radius:16px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.ligne-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.ligne-3{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:25px;
}

.colonne{
    width:100%;
}

.fiche-bloc label{
    display:block;
    margin-top:12px;
    margin-bottom:6px;
    font-weight:600;
    color:#374151;
}

.etude-court{
    width:180px;
}

.etude-moyen{
    width:320px;
}

.etude-long{
    width:500px;
}

.etude-select{
    width:320px;
}

.etude-texte{
    width:100%;
    min-height:100px;
}

.etude-texte-grand{
    width:100%;
    min-height:180px;
}

.fiche-bloc input,
.fiche-bloc select,
.fiche-bloc textarea{
    padding:10px;
    border:1px solid #d7dde3;
    border-radius:6px;
    font-size:14px;
}

.fiche-bloc input:focus,
.fiche-bloc select:focus,
.fiche-bloc textarea:focus{
    outline:none;
    border-color:#2F9D94;
    box-shadow:0 0 4px rgba(47,157,148,.25);
}

@media(max-width:1200px){

    .ligne-2,
    .ligne-3{
        grid-template-columns:1fr;
    }

    .etude-long,
    .etude-moyen,
    .etude-select{
        width:100%;
    }
}
.main form{
    max-width:1200px;
    margin:auto;
}

.main input,
.main select{
    width:100%;
    max-width:250px;
    height:45px;
    padding:8px 12px;
    margin-bottom:15px;
    border:1px solid #cfd8dc;
    border-radius:6px;
}

.main textarea{
    width:100%;
    min-height:150px;
    padding:10px;
    border:1px solid #cfd8dc;
    border-radius:6px;
}

h2{
    margin-top:40px;
    margin-bottom:20px;
}
/* Personnes présentes */

.personnes-presentes{

    display:flex;

    gap:40px;

    align-items:center;

}

.personnes-presentes label{

    display:flex !important;

    align-items:center;

    gap:8px;

    margin:0 !important;

    font-weight:400;

}

.personnes-presentes input{

    width:auto !important;

    height:auto !important;

    margin:0 !important;

}
input[type="checkbox"]{

    width:auto !important;

    max-width:none !important;

    height:auto !important;

    margin-right:8px;

}

.personnes-presentes{

    display:flex;

    gap:50px;

}
