.widget-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 200px;
  padding: 15px;
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  font-family: Arial, sans-serif;
  text-align: center;
  z-index: 1000;
  animation: fadeIn 0.5s ease;
}

.widget-box h2 {
  font-size: 18px;
}

.widget-box p {
  font-size: 14px;
  margin: 5px 0 10px 0;
}

.widget-box button {
  width: 100%;
  padding: 5px;
  border: none;
  background-color: #ff9800;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.widget-box button:hover {
  background-color: #e68900;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}