/* Styles for the notification */
#notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0078d4; /* Blue color similar to Windows theme */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease-in-out;
}

#notification p {
  font-size: 18px;
  margin: 5px;
  color: white; /* White text color */
}

#closeBtn {
  background-color: #ff0000; /* Red close button */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}
