/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

/* BODY */
body {
    background: #f4f6f9;
    color: #222;
    padding: 40px;
}

/* CONTAINER */
.container {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* TITRES */
h1, h2 {
    margin-bottom: 20px;
    font-weight: 600;
}

/* BOUTONS */
button, .btn {
    background: #0066ff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

button:hover, .btn:hover {
    background: #004fcc;
}

/* INPUTS */
input[type="file"],
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* TABLEAU DE FICHIERS */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

table th {
    background: #f0f0f0;
    text-align: left;
}