/* Bootstrap Alert Base Styles */
.alert {
	position: relative;
	padding: 1.25rem 1.75rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: 0.25rem;
}

.alert-container {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.alert-container--overlay {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4000;
	width: calc(100% - 2rem);
	max-width: 640px;
	pointer-events: none;
	padding-top: 12px;
}

.alert-container--overlay .alert {
	pointer-events: auto;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* Alert Variants */
.alert-primary {
	color: #084298;
	background-color: #cfe2ff;
	border-color: #b6d4fe;
}

.alert-secondary {
	color: #41464b;
	background-color: #e2e3e5;
	border-color: #d3d6d8;
}

.alert-success {
	color: #0f5132;
	background-color: #d1e7dd;
	border-color: #badbcc;
}

.alert-danger {
	color: #842029;
	background-color: #f8d7da;
	border-color: #f5c2c7;
}

.alert-warning {
	color: #664d03;
	background-color: #fff3cd;
	border-color: #ffecb5;
}

.alert-info {
	color: #055160;
	background-color: #cff4fc;
	border-color: #b6effb;
}

.alert-light {
	color: #636464;
	background-color: #fefefe;
	border-color: #fdfdfe;
}

.alert-dark {
	color: #141414;
	background-color: #d3d3d3;
	border-color: #bcbcbc;
}

/* Dismiss Button */
.alert-dismissible .btn-close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 1rem 1rem;
	color: inherit;
	background: none;
	border: none;
	appearance: none;
}

/* Utility Classes (if needed) */
.mt-3 {
	margin-top: 1rem !important;
}

.mb-3 {
	margin-bottom: 1rem !important;
}

.me-3 {
	margin-right: 1rem !important;
}

.ms-3 {
	margin-left: 1rem !important;
}

/* Add any additional utilities as needed */
