/*
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-top: -1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 8px;
  font-size: 12px;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
*/

.alert {
	position: relative;
	padding: 16px;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 13px;
}

.alert-default {
	background-color: #ebebeb;
	border-color: #e3e3e3;
	color: #6c6c6c;
}

.alert-primary {
	background-color: #0088cc;
	border-color: #007ebd;
}

.alert-success {
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
}

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

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

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

.alert-dark {
	background-color: #313131;
	border-color: black;
	color: #cacaca;
}

.close {
	float: right;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: .5;
	margin-top: -2px;
}

button.close {
	padding: 0;
	background-color: transparent;
	border: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(51, 51, 51, 0.9);
  color: #fff;
  padding: 10px 15px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  font-family: sans-serif;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
}