
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            padding: 20px;
        }
        .containerPrayerRequest {
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            max-width: 400px;
            margin: auto;
        }
        h2 {
            text-align: center;
            color: #666; /* 333 is a common dark gray color */
        }
        label {
            display: block;
            margin-bottom: 8px;
        }
        input[type="text"],
        textarea {
            width: calc(100% - 22px); /* Adjust width to account for padding */
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        input[type="submit"] {
            background-color: #5cb85c;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
        }
        input[type="submit"]:hover {
            background-color: #4cae4c;
        }
        
        .submitPrayerRequest {
            background-color: #5cb85c;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            text-align: center; /* Center the text */
        }

        .submitPrayerRequest:hover {
            background-color: #4cae4c;
        }
        
        .white-background {
            background-color: white; /* Sets the background color to white */
           padding: 20px;          /* Optional: Adds some padding for better spacing */
           border: 1px solid #ccc; /* Optional: Adds a border for visibility */
        }

/* Notification styles (professional, unobtrusive) */
.notif {
  position: relative; /* or fixed if you want to overlay elsewhere */
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #323a46;
  color: #f7f8fa;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  border: 1px solid rgba(255,255,255,.08);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 250ms ease, transform 250ms ease;
  z-index: 9999;
  cursor: pointer;
  user-select: none;
  display: none; /* start hidden (we'll show via class) */
}
.notif.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}