/* Container for alerts */
/* #alerts-container {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 9999;
} */

/* Alert Styles */
.alert {
	padding: 15px 20px;
	margin: 10px 0;
    text-align: left !important;
	border-radius: 5px;
	position: relative;
	font-family: Arial, sans-serif;
	font-size: 16px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: opacity 0.3s ease;
}

/* Alert Types */
.alert-success {
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

.alert-info {
	background-color: #d1ecf1;
	border: 1px solid #bee5eb;
	color: #0c5460;
}

.alert-warning {
	background-color: #fff3cd;
	border: 1px solid #ffeeba;
	color: #856404;
}

.alert-danger {
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

/* Close Button */
.alert-dismissible > .close {
    position: absolute;
    top: 7px;
    right: 7px;
	cursor: pointer;
	font-size: 20px;
	font-weight: bold;
	color: inherit;
	background: none;
	border: none;
}

/* Hover effect for close button */
.alert-dismissible > .close:hover {
	opacity: 0.7;
}
