/* =========================================================
   🔹 Flash Toast (animat sus/jos)
   ========================================================= */
	/* 🔔 Flash Toast (animat sus/jos) */
	.flash-toast {
		position: fixed;
		top: -120px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 9999;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		transition: top 0.5s ease-in-out, opacity 0.5s ease-in-out;
		opacity: 0;
	}
	.flash-toast.show { top: 20px; opacity: 1; }

	.toast-item {
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 12px 20px;
		border-radius: 8px;
		min-width: 240px;
		max-width: 420px;
		text-align: center;
		color: #fff;
		font-weight: 500;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
		background-color: #2d3748;
	}
	.toast-item.success { background-color: #16a34a; }
	.toast-item.danger { background-color: #dc2626; }
	.toast-item.warning { background-color: #f59e0b; }
	.toast-item.info { background-color: #2563eb; }
	.toast-item i { width: 20px; height: 20px; }


/* =========================================================
   🔹 Redimensionare titlu din sectiunea hero_pages
   ========================================================= */
.page-title-small{
	font-size: 1.75rem;      /* desktop */
	line-height: 1.25;
	letter-spacing: -0.5px;
}

@media (max-width: 991px){
	.page-title-small{
		font-size: 1.5rem;
	}
}

@media (max-width: 576px){
	.page-title-small{
		font-size: 1.35rem;
	}
}


/* =========================================================
   🔹 Butoanele pentru wysiwyg adica pentru casetele de text
   ========================================================= */
.wysiwyg-wrapper {
	background: #fff;
}

.wysiwyg-editor {
	outline: none;
	font-size: 14px;
	line-height: 1.6;
}

.wysiwyg-editor:focus {
	background: #fcfcfc;
}

.wysiwyg-toolbar button i {
	font-size: 0.9rem;
}

.wysiwyg-toolbar .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
}

.wysiwyg-toolbar i {
	font-size: 0.9rem;
	color: #495057;
}

.wysiwyg-toolbar .btn:hover i {
	color: #0d6efd;
}


/* =========================================================
   🔹 ---
   ========================================================= */
