/**
 * ANIEF Consulenti - Frontend Material Design
 *
 * Design basato su Material Design Google
 * Colori: Primary #1565c0 (Blue), Background white/gray
 *
 * @file    frontend.css
 * @version 1.0.0
 * @author  Andrea Parenti
 * @link    https://www.drepar.com
 * @email   drepar68@gmail.com
 */

/* ==========================================================================
   SVG ICONS - Material Design
   ========================================================================== */

.anief-svg-icon {
	display: inline-block;
	vertical-align: middle;
	color: currentColor;
}

/* ==========================================================================
   CONTAINER PRINCIPALE
   ========================================================================== */

.anief-consulenti-frontend {
	max-width: 1400px;
	margin: 0 auto;
	padding: 12px;
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: #ffffff;
}

/* ==========================================================================
   TITOLI - Material Design
   ========================================================================== */

.anief-form-title {
	font-size: 28px;
	font-weight: 400;
	color: #1565c0;
	margin: 0 0 24px 0;
	padding-bottom: 16px;
	border-bottom: 2px solid #1565c0;
	display: flex;
	align-items: center;
	gap: 12px;
}

.anief-list-title {
	font-size: 24px;
	font-weight: 500;
	color: #1565c0;
	margin: 0 0 24px 0;
	display: flex;
	align-items: center;
	gap: 12px;
}

/* ==========================================================================
   CONTAINER FORM E LISTE
   ========================================================================== */

.anief-creation-form-container,
.anief-consultant-list-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 16px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
}

/* ==========================================================================
   MATERIAL FORM
   ========================================================================== */

.anief-material-form .form-group {
	margin-bottom: 12px;
}

/* Form Row - per campi sulla stessa riga */
.anief-material-form .form-row {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
}

.anief-material-form .form-row .form-group {
	flex: 1;
	margin-bottom: 0;
}

/* Larghezze custom per campi specifici */
.anief-material-form .form-row .form-group-small {
	flex: 0 0 180px;
}

.anief-material-form .form-row .form-group-large {
	flex: 2;
}

@media (max-width: 768px) {
	.anief-material-form .form-row {
		flex-direction: column;
		gap: 0;
	}

	.anief-material-form .form-row .form-group {
		margin-bottom: 12px;
	}

	.anief-material-form .form-row .form-group-small {
		flex: 1;
	}
}

.anief-material-form label {
	display: block;
	margin-bottom: 8px;
	color: #1565c0;
	font-weight: 500;
	font-size: 14px;
}

.anief-material-form input[type="text"],
.anief-material-form input[type="email"],
.anief-material-form input[type="url"],
.anief-material-form input[type="tel"],
.anief-material-form select,
.anief-material-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid rgba(0,0,0,0.42);
	border-radius: 4px;
	font-size: 16px;
	font-family: inherit;
	transition: all 0.3s ease;
	background: white;
	box-sizing: border-box;
}

.anief-material-form input:focus,
.anief-material-form select:focus,
.anief-material-form textarea:focus {
	border-color: #1565c0;
	outline: none;
	box-shadow: 0 0 0 2px rgba(21,101,192,0.2);
}

.anief-material-form select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231565c0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 40px;
}

.anief-material-form textarea {
	min-height: 100px;
	resize: vertical;
}

.anief-material-form small {
	display: block;
	margin-top: 4px;
	color: rgba(0,0,0,0.6);
	font-size: 12px;
}

/* ==========================================================================
   FILTRI
   ========================================================================== */

.anief-filters {
	background: white;
	padding: 12px 16px;
	border-radius: 4px;
	margin-bottom: 16px;
	box-shadow: 0 1px 3px 0 rgba(0,0,0,.12), 0 1px 2px 0 rgba(0,0,0,.24);
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	align-items: flex-end;
}

.anief-filter-group {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 200px;
	flex: 1;
}

.anief-filter-group label {
	font-size: 12px;
	font-weight: 500;
	color: rgba(0,0,0,0.6);
	letter-spacing: 0.25px;
	text-transform: uppercase;
}

.anief-filter-select,
.anief-filter-input {
	padding: 10px 12px;
	border: 1px solid rgba(0,0,0,.42);
	border-radius: 4px;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
	color: rgba(0,0,0,0.87);
	background: white;
	transition: border-color 0.15s ease;
	height: 36px;
}

.anief-filter-select:hover,
.anief-filter-input:hover {
	border-color: rgba(0,0,0,.87);
}

.anief-filter-select:focus,
.anief-filter-input:focus {
	outline: none;
	border-color: #1565c0;
	border-width: 2px;
	padding-left: 11px;
	box-shadow: 0 1px 3px 0 rgba(0,0,0,.12), 0 1px 2px 0 rgba(0,0,0,.24);
}

.anief-btn-reset {
	background: transparent;
	color: #1565c0;
	border: none;
	padding: 10px 16px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Roboto', sans-serif;
	cursor: pointer;
	transition: background 0.15s ease, box-shadow 0.15s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.anief-btn-reset:hover {
	background: rgba(98, 0, 238, 0.08);
	box-shadow: 0 1px 3px 0 rgba(0,0,0,.12), 0 1px 2px 0 rgba(0,0,0,.24);
}

/* ==========================================================================
   TABELLE
   ========================================================================== */

.anief-table-container {
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
	overflow: hidden;
	border: 1px solid rgba(0,0,0,.08);
	margin-bottom: 20px;
}

.anief-meetings-table,
.anief-consultant-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
}

.anief-meetings-table thead,
.anief-consultant-table thead {
	background: white;
}

.anief-meetings-table th,
.anief-consultant-table th {
	padding: 12px 16px;
	text-align: left;
	font-size: 12px;
	font-weight: 500;
	color: rgba(0,0,0,0.87);
	text-transform: uppercase;
	letter-spacing: 0.25px;
	border-bottom: 1px solid rgba(0,0,0,.12);
}

.anief-meetings-table td,
.anief-consultant-table td {
	padding: 16px;
	border-bottom: 1px solid rgba(0,0,0,.12);
	vertical-align: middle;
	font-size: 14px;
	color: rgba(0,0,0,0.87);
}

.anief-meetings-table tbody tr,
.anief-consultant-table tbody tr {
	transition: background 0.2s ease;
}

.anief-meetings-table tbody tr:hover,
.anief-consultant-table tbody tr:hover {
	background: rgba(98, 0, 238, 0.04);
}

.anief-meetings-table tbody tr:last-child td,
.anief-consultant-table tbody tr:last-child td {
	border-bottom: none;
}

/* ==========================================================================
   BADGE/PILLS
   ========================================================================== */

.anief-type-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.25px;
	text-transform: uppercase;
}

.anief-type-badge-presenza {
	background: #e8f0fe;
	color: #1565c0;
}

.anief-type-badge-online {
	background: #e6f4ea;
	color: #2e7d32;
}

.anief-type-badge-mista {
	background: #fff8e1;
	color: #f57c00;
}

.anief-type-badge-rinviata {
	background: #ffebee;
	color: #c62828;
}

/* ==========================================================================
   PULSANTI
   ========================================================================== */

.anief-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.25px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	font-family: 'Roboto', sans-serif;
}

.anief-btn-primary {
	background: #1565c0;
	color: white;
	box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
}

.anief-btn-primary:hover {
	background: #0d47a1;
	box-shadow: 0 4px 8px -1px rgba(0,0,0,.2), 0 6px 10px 0 rgba(0,0,0,.14), 0 2px 14px 0 rgba(0,0,0,.12);
	transform: translateY(-1px);
}

.anief-btn-primary:active {
	background: #0d47a1;
	box-shadow: 0 5px 5px -3px rgba(0,0,0,.2), 0 8px 10px 1px rgba(0,0,0,.14);
	transform: translateY(0);
}

.anief-btn-secondary {
	background: white;
	color: #1565c0;
	border: 1px solid #1565c0;
}

.anief-btn-secondary:hover {
	background: #e3f2fd;
}

.anief-btn-danger {
	background: #c62828;
	color: white;
	box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
}

.anief-btn-danger:hover {
	background: #b71c1c;
	box-shadow: 0 4px 8px -1px rgba(0,0,0,.2), 0 6px 10px 0 rgba(0,0,0,.14), 0 2px 14px 0 rgba(0,0,0,.12);
	transform: translateY(-1px);
}

.anief-btn-small {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.anief-btn-view {
	background: #e3f2fd;
	color: #1565c0;
	cursor: pointer !important;
}

.anief-btn-view:hover {
	background: #bbdefb;
	transform: scale(1.05);
}

.anief-btn-edit {
	background: #e8f5e9;
	color: #2e7d32;
	cursor: pointer !important;
}

.anief-btn-edit:hover {
	background: #c8e6c9;
	transform: scale(1.05);
}

.anief-btn-delete {
	background: #ffebee;
	color: #c62828;
	cursor: pointer !important;
}

.anief-btn-delete:hover {
	background: #ffcdd2;
	transform: scale(1.05);
}

/* ==========================================================================
   AZIONI
   ========================================================================== */

.anief-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}

/* ==========================================================================
   MESSAGGI FORM
   ========================================================================== */

.anief-form-messages {
	margin-top: 24px;
}

.anief-message {
	padding: 16px;
	border-radius: 4px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.anief-message-success {
	background: #e8f5e9;
	color: #2e7d32;
	border-left: 4px solid #4caf50;
}

.anief-message-error {
	background: #ffebee;
	color: #c62828;
	border-left: 4px solid #ef5350;
}

.anief-message-loading {
	background: #e3f2fd;
	color: #1565c0;
	border-left: 4px solid #2196f3;
}

/* ==========================================================================
   EMPTY STATE
   ========================================================================== */

.anief-empty-state {
	text-align: center;
	padding: 32px 16px;
	color: rgba(0,0,0,0.6);
}

.anief-empty-state svg {
	margin-bottom: 24px;
}

.anief-empty-state p {
	font-size: 16px;
	margin: 0 0 24px 0;
}

/* ==========================================================================
   FORM ACTIONS
   ========================================================================== */

.form-actions {
	display: flex;
	gap: 16px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid rgba(0,0,0,0.12);
}

/* ==========================================================================
   META INFO
   ========================================================================== */

.anief-meeting-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
	color: rgba(0,0,0,0.6);
	margin: 0;
}

.anief-meeting-meta-item {
	display: flex;
	align-items: center;
	gap: 4px;
}

.anief-meeting-meta-item .anief-svg-icon {
	font-size: 14px;
	opacity: 0.7;
}

/* ==========================================================================
   MODALE ANTEPRIMA EMAIL
   ========================================================================== */

.anief-modal-overlay {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2147483647 !important;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	padding: 20px;
	transform: none !important;
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
}

.anief-modal-overlay[style*="display: block"],
.anief-modal-overlay[style*="display: flex"],
.anief-modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.anief-modal {
	background: white;
	border-radius: 8px;
	box-shadow: 0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12);
	max-width: 900px;
	width: 50%;
	max-height: 90vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	animation: slideUp 0.3s ease;
	position: relative !important;
	margin: auto;
	z-index: 2147483648 !important;
	transform: none !important;
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
}

.anief-modal-header {
	padding: 20px 24px;
	background: #1565c0;
	color: white;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 8px 8px 0 0;
}

.anief-modal-title {
	font-size: 20px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 12px;
}

.anief-modal-close {
	background: transparent;
	border: none;
	color: white;
	cursor: pointer;
	padding: 4px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	transition: background 0.2s ease;
}

.anief-modal-close:hover {
	background: rgba(255, 255, 255, 0.1);
}

.anief-modal-body {
	padding: 24px;
	flex: 1;
	overflow-y: auto;
}

/* ==========================================================================
   LOADING SPINNER
   ========================================================================== */

.anief-loading-spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid #f3f3f3;
	border-top: 2px solid #1565c0;
	border-radius: 50%;
	animation: anief-spin 1s linear infinite;
}

@keyframes anief-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes slideUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.anief-pagination {
	display: flex;
	gap: 8px;
	justify-content: center;
	align-items: center;
	margin-top: 24px;
	flex-wrap: wrap;
}

.anief-pagination-current {
	font-weight: 500;
}

/* ==========================================================================
   MODALE CONFERMA
   ========================================================================== */

.anief-confirm-modal {
	display: none;
}

.anief-confirm-modal.active {
	display: flex;
}

.anief-confirm-window {
	background: white;
	border-radius: 8px;
	box-shadow: 0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12);
	max-width: 500px;
	width: 90%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	z-index: 2147483648;
}

.anief-confirm-header {
	padding: 16px 20px;
	background: #f9fafb;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.anief-confirm-title {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #111827;
}

.anief-confirm-close {
	background: transparent;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: #9ca3af;
	padding: 4px;
	transition: color 0.15s ease;
}

.anief-confirm-close:hover {
	color: #4b5563;
}

.anief-confirm-body {
	padding: 20px;
	color: #4b5563;
	font-size: 14px;
	line-height: 1.5;
}

.anief-confirm-footer {
	padding: 16px 20px;
	background: #f9fafb;
	border-top: 1px solid #e5e7eb;
	display: flex;
	gap: 8px;
	justify-content: flex-end;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
	.anief-consulenti-frontend {
		padding: 16px;
	}

	.anief-creation-form-container,
	.anief-consultant-list-container {
		padding: 16px;
		margin: 0;
		border-radius: 0;
	}

	.anief-form-title {
		font-size: 22px;
	}

	.anief-list-title {
		font-size: 20px;
	}

	.form-actions {
		flex-direction: column;
	}

	.anief-btn {
		width: 100%;
		justify-content: center;
	}

	.anief-meetings-table,
	.anief-consultant-table {
		font-size: 12px;
	}

	.anief-meetings-table th,
	.anief-meetings-table td,
	.anief-consultant-table th,
	.anief-consultant-table td {
		padding: 12px 8px;
	}

	.anief-filters {
		flex-direction: column;
		gap: 12px;
	}

	.anief-filter-group {
		min-width: 100%;
	}

	.anief-filter-select,
	.anief-filter-input,
	.anief-btn-reset {
		width: 100%;
	}

	.anief-table-container {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.anief-meetings-table,
	.anief-consultant-table {
		min-width: 600px;
	}

	.anief-modal {
		width: 95%;
		max-width: none;
	}
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.anief-filter-select:focus-visible,
.anief-filter-input:focus-visible,
.anief-btn:focus-visible,
.anief-btn-small:focus-visible {
	outline: 2px solid #1565c0;
	outline-offset: 2px;
}

/* ==========================================================================
   CRITICAL: FORCE POINTER CURSOR
   ========================================================================== */

.anief-consulenti-frontend .anief-btn-view,
.anief-consulenti-frontend .anief-btn-edit,
.anief-consulenti-frontend .anief-btn-delete,
.anief-meetings-table .anief-btn-view,
.anief-meetings-table .anief-btn-edit,
.anief-meetings-table .anief-btn-delete,
button.anief-btn-view,
button.anief-btn-edit,
button.anief-btn-delete {
	cursor: pointer !important;
}

.anief-actions button,
.anief-meetings-table .anief-actions button {
	cursor: pointer !important;
}

/* ==========================================================================
   PREVIEW OVERLAY SPECIFIC
   ========================================================================== */

#anief-consulenti-preview-modal {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	background: rgba(15, 23, 42, 0.45);
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	z-index: 2147483647 !important;
	padding: 32px;
	box-sizing: border-box;
}

#anief-consulenti-preview-modal .anief-consulenti-preview-window {
	background: #ffffff;
	width: 80%;
	max-width: 960px;
	min-height: 50vh;
	max-height: 90vh;
	border-radius: 14px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	z-index: 2147483648;
}

#anief-consulenti-preview-modal .anief-consulenti-preview-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	background: #f9fafb;
	border-bottom: 1px solid #e5e7eb;
}

#anief-consulenti-preview-modal .anief-consulenti-preview-close {
	border: none;
	background: transparent;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	color: #6b7280;
	padding: 0 4px;
}

#anief-consulenti-preview-modal .anief-consulenti-preview-close:hover {
	color: #111827;
}

#anief-consulenti-preview-modal .anief-consulenti-preview-body {
	flex: 1 1 auto;
	min-height: 0;
	background: #ffffff;
	display: flex;
	overflow: hidden;
}

#anief-consulenti-preview-modal .anief-consulenti-preview-iframe {
	flex: 1 1 auto;
	width: 100%;
	border: none;
	display: block;
	min-height: 0;
}

/* ==========================================================================
   MULTI-SELECT STYLES - Material Design
   ========================================================================== */

.anief-multiselect {
	width: 100%;
	min-height: 120px;
	padding: 12px 16px;
	font-size: 15px;
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: rgba(0, 0, 0, 0.87);
	background-color: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 6px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.anief-multiselect:hover {
	border-color: rgba(21, 101, 192, 0.4);
}

.anief-multiselect:focus {
	outline: none;
	border-color: #1565c0;
	box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.anief-multiselect option {
	padding: 8px 12px;
	margin: 2px 0;
	border-radius: 4px;
	transition: background-color 0.15s ease;
}

.anief-multiselect option:checked {
	background-color: #1565c0;
	color: #ffffff;
	font-weight: 500;
}

.anief-multiselect option:hover:not(:checked) {
	background-color: rgba(21, 101, 192, 0.08);
	cursor: pointer;
}

/* Responsive mobile */
@media (max-width: 768px) {
	.anief-multiselect {
		min-height: 150px;
		font-size: 14px;
		padding: 10px 12px;
	}

	.anief-multiselect option {
		padding: 6px 10px;
		font-size: 14px;
	}
}


/* ==========================================================================
   TOAST
   ========================================================================== */

.anief-toast-container {
	position: fixed;
	top: 16px;
	right: 16px;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 380px;
}

.anief-toast {
	background: #ffffff;
	color: rgba(0, 0, 0, 0.87);
	border-left: 4px solid #2196f3;
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
	padding: 12px 14px;
	border-radius: 12px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.anief-toast__content {
	flex: 1;
	font-size: 14px;
	line-height: 1.35;
}

.anief-toast__close {
	background: transparent;
	border: 0;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	padding: 0 2px;
	opacity: 0.75;
}

.anief-toast__close:hover {
	opacity: 1;
}

.anief-toast--error {
	background: #ffebee;
	color: #c62828;
	border-left-color: #ef5350;
}

.anief-toast--success {
	background: #e8f5e9;
	color: #2e7d32;
	border-left-color: #43a047;
}
