
#slideNotice {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff3cd;
  color: #333;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  font-size: 16px;
  z-index: 9999;
  transition: top 0.6s ease;
  max-width: 420px;
  text-align: center;
  font-family: 'Roboto', 'Segoe UI', sans-serif;
}

#slideNotice.show {
  top: 30px;
}

#slideNotice button {
  margin-top: 12px;
  padding: 8px 16px;
  background-color: #ff9800;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

#slideNotice a {
  color: #1976d2;
  text-decoration: none;
  font-weight: 500;
}
