.alert {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

.bg-danger {
  background-color: #f97575; /* Warna merah sesuai dengan kelas Bootstrap */
}

.text-center {
  text-align: center;
}

/* Contoh tambahan untuk mengubah gaya teks saat ada hover */
.alert:hover {
  background-color: #c82333; /* Warna merah yang sedikit lebih gelap */
  cursor: pointer;
}

/* Contoh tambahan untuk menambahkan animasi fade-in */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.alert {
  animation: fadeIn 0.5s ease-in;
}
