/* GestiForm - Styles du Catalogue */
.gestiform-container { 
    font-family: 'Segoe UI', Arial, sans-serif; 
    max-width: 1000px; 
    margin: 20px auto; 
}

.gestiform-top-bar { 
    margin-bottom: 20px; 
    text-align: right; 
}

.btn-import { 
    background: #f0ad4e; 
    color: white; 
    border: none; 
    padding: 8px 15px; 
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 13px; 
}

.btn-import:hover { background: #ec971f; }

.gestiform-form-card { 
    background: #fefefe; 
    padding: 20px; 
    border-radius: 8px; 
    border: 1px solid #ddd; 
    margin-bottom: 30px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.gestiform-form-card h3 { 
    margin-top: 0; 
    color: #004a99; 
    font-size: 18px; 
}

.gestiform-grid { 
    display: flex; 
    gap: 15px; 
    margin-bottom: 10px; 
}

.form-group { 
    display: flex; 
    flex-direction: column; 
    flex: 1; 
    margin-bottom: 10px; 
}

.form-group.full { flex: 2; }

.form-group label { 
    font-weight: 600; 
    font-size: 13px; 
    margin-bottom: 4px; 
}

.form-group input, .form-group textarea { 
    padding: 8px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    font-size: 14px;
}

.btn-main { 
    background: #004a99; 
    color: white; 
    border: none; 
    padding: 10px 20px; 
    border-radius: 4px; 
    cursor: pointer; 
    font-weight: bold;
}

.btn-main:hover { background: #003366; }

.btn-link { 
    color: #d9534f; 
    text-decoration: none; 
    margin-left: 15px; 
    font-size: 14px; 
}

.gestiform-table { 
    width: 100%; 
    border-collapse: collapse; 
    background: white; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.gestiform-table th { 
    background: #f8f8f8; 
    padding: 12px; 
    text-align: left; 
    border-bottom: 2px solid #eee; 
    font-size: 14px;
}

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

.gestiform-table tr:hover { background: #fcfcfc; }

.td-actions { text-align: right; }

.action-btn { 
    text-decoration: none; 
    font-size: 18px; 
    margin-left: 12px; 
    display: inline-block;
    transition: transform 0.2s;
}

.gestiform-alert { 
    background: #dff0d8; 
    color: #3c763d; 
    padding: 15px; 
    margin-bottom: 20px; 
    border-radius: 4px; 
    border: 1px solid #d6e9c6; 
}

.alert-danger { 
    background: #f2dede; 
    color: #a94442; 
    border-color: #ebccd1; 
}

.action-btn:hover {
    transform: scale(1.2);
}

/* Optionnel : donner une couleur spécifique au lien pour le repérer */
.action-btn[title="Voir la fiche"] {
    filter: sepia(1) saturate(5) hue-rotate(180deg); /* Donne une teinte bleutée à l'émoji */
}

/* Élargissement de la colonne Prix HT */
.gestiform-table th:nth-child(2), 
.gestiform-table td:nth-child(2) {
    min-width: 115px; /* Ajusté pour donner environ 15px de plus que la taille standard */
    padding-left: 20px;
}

.gestiform-tabs { display: flex; gap: 5px; margin-bottom: 20px; border-bottom: 2px solid #004a99; padding-bottom: 10px; }
.tab-btn { padding: 10px 20px; text-decoration: none; background: #eee; color: #333; border-radius: 5px 5px 0 0; font-weight: bold; }
.tab-btn.active { background: #004a99; color: white; }
.gestiform-table th:nth-child(2) { min-width: 115px; } /* Ta demande de +15px sur le prix */

.section-card { 
        background: #e3ebca; 
        padding: 25px; 
        border: 1px solid #e0e0e0; 
        border-radius: 12px; 
        margin-bottom: 25px; 
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }