/* static/css/style.css */
/* =====================================================
   GLOBAL — partagé par toutes les apps
   Importé dans : core, uploads, billing, accounts, clients
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Layout dashboard */
.content-wrapper {
    display: flex;
    flex: 1;
}

.content-wrapper main {
    flex: 1;
    min-width: 0;
    overflow-x: hidden;
    padding: 30px;  /* ← ajoute juste ça */
}