.formulaire-equipements-wrapper {
    background: #f4f4f4;
    padding: 20px;
}

#formulaire {
    background: white;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.form-section {
    border: 1px solid #004080;
    padding: 20px;
    margin-bottom: 30px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.conformite-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.conformite-table th, .conformite-table td {
    border: 1px solid #ccc;
    padding: 8px;
    font-size: 13px;
}

.conformite-table th {
    background: #004080;
    color: white;
}

.form-sticky-actions {
    position: sticky;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    padding: 15px;
    border-top: 2px solid #004080;
    display: flex;
    justify-content: center;
    gap: 20px;
}