body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    color: #333;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="password"],
textarea,
select {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    background-color:#ffa726;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.tabs {
    margin-bottom: 20px;
}

.tab-button {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    padding: 10px 15px;
    cursor: pointer;
}

.tab-button.active, .tab-button:hover {
    background-color: #ddd;
}

.tab-content {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.category {
    width: 48%; /* Ajustez selon vos besoins */
    margin-bottom: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.category h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.document-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.document-table th, .document-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.document-table th {
    background-color: #f2f2f2;
}

.no-documents {
    font-style: italic;
    color: #777;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsivité */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }

    .categories {
        flex-direction: column;
    }

    .category {
        width: 100%;
    }
}



