p {
    color: blue;
    text-align: center;
    justify-content: center;
}
.section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  text-align: center;
}
/*
*/
.styled-button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #0078D4;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
body {
  padding-top: 70px;
}

.toast {
  display: none;              /* hidden by default */
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  color: #333;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  font-size: 13px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 250px;
  z-index: 9999;
}

/* small icon */
.toast img {
  width: 24px;
  height: 24px;
}

/* close button */
.toast .close-btn {
  margin-left: auto;
  cursor: pointer;
  font-weight: bold;
  color: #666;
}

























