.snif-liste-table, .snif-liste-table th, .snif-liste-table td {
	font-family: 'Mulish', Arial, sans-serif;
	font-size: 1.01em;
}
.snif-front-btn {
	background: linear-gradient(90deg, #41246D 50%, #e71e80 100%);
	border: none;
	border-radius: 7px;
	padding: 5px 16px;
	color: #fff;
	font-weight: 600;
	box-shadow: 0 1px 8px #41246d44;
	margin: 2px 0;
	transition: background 0.18s;
}
.snif-front-btn:hover { background: #e71e80; color:#fff;}
@media (max-width:900px) {
	.snif-liste-table th, .snif-liste-table td { font-size: 0.98em; }
}
@media (max-width:600px) {
	.snif-liste-table, .snif-liste-table thead { display:none;}
	.snif-liste-table tr, .snif-liste-table td { display:block; width:100%;}
}

.snif-montant,
.snif-liste-table td.snif-montant,
.snif-liste-table th.snif-montant {
	text-align: right;
	white-space: nowrap;
}

.snif-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 24px #41246d15;
  padding: 32px 24px 18px 24px;
  font-family: 'Mulish', Arial, sans-serif;
  margin-bottom: 36px;
  max-width: 1000px;
  width: 96%;
}
.snif-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.snif-col {
  flex: 1;
  min-width: 160px;
  margin-right: 0;
}
.snif-col label {
  display: block;
  font-weight: 600;
  margin-bottom: 7px;
  color: #41246D;
}
.snif-form input[type="text"],
.snif-form input[type="number"],
.snif-form select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1.08em;
  background: #f7f7fb;
  margin-bottom: 0;
  transition: border 0.18s;
}
.snif-form input[type="text"]:focus,
.snif-form input[type="number"]:focus,
.snif-form select:focus {
  border-color: #e71e80;
  outline: none;
}
.snif-btn-main {
  background: linear-gradient(90deg,#41246D,#e71e80);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  padding: 13px 34px;
  font-size: 1.16em;
  box-shadow: 0 2px 12px #41246d22;
  cursor: pointer;
  transition: background 0.15s;
}
.snif-btn-main:hover {
  background: #e71e80;
}
.snif-btn-cancel {
  background: #fff;
  border: 2px solid #e71e80;
  border-radius: 8px;
  color: #e71e80;
  font-weight: 700;
  padding: 13px 34px;
  font-size: 1.16em;
  box-shadow: 0 2px 12px #e71e8022;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  margin-left: 10px;
}
.snif-btn-cancel:hover {
  background: #e71e80;
  color: #fff;
}
@media (max-width:700px){
  .snif-row {
	flex-direction: column;
  }
  .snif-col {
	width: 100% !important;
	margin-right: 0;
  }
  .snif-form { padding: 18px 8px; }
}