/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

/* Light blue header at the top */
.page-header {
  background-color: #00A2DB;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
}

/* Center notification container */
.notification-container {
  background-color: #fff7c0;
  width: 300px;
  margin: 60px auto;
  padding: 20px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.notification-content {
  text-align: center;
}

h2 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}
