body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  background-color: #f0f2f5;
  padding: 20px;
  box-sizing: border-box;
}

#app-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container {
  text-align: center;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

h1 {
  color: #333;
  margin-bottom: 30px;
}

.lotto-numbers {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  min-height: 50px;
}

.lotto-ball {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
}

#generate-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#generate-btn:hover {
  background-color: #0056b3;
}

/* Contact Form Specific Styles */
.contact-form-section {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.contact-form-section h2 {
    color: #333;
    margin-bottom: 20px;
}

.contact-form-section p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

#contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

#contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

#contact-form input[type="text"]:focus,
#contact-form input[type="email"]:focus,
#contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

#contact-form button[type="submit"] {
    background-color: #28a745; /* Green for submit */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

#contact-form button[type="submit"]:hover {
    background-color: #218838;
}

/* Disqus Section Styles */
.disqus-section {
    background-color: white;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}