
body {
  background-color: #f8f8f8;
  font-family: 'Arial', sans-serif;
  line-height: 1.5;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

h1 {
  color: #333;
  font-size: 28px;
  margin-bottom: 10px;
}

p {
  color: #666;
  font-size: 16px;
  margin-bottom: 20px;
}

.form {
  margin-top: 30px;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 16px;
}

textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #45a049;
}

#prescriptionResult {
  margin-top: 30px;
  font-weight: bold;
  font-size: 18px;
}


/* Media Queries */
@media only screen and (max-width: 1200px) {
  .container {
    padding: 10px;
  }
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .form {
    text-align: center;
  }

  textarea {
    width: 100%;
  }

  button {
    display: block;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 480px) {
  h1 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }
}






footer {
  background-color: #f4f4f4;
  padding: 20px 0;
  color: #555;
  font-size: 14px;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.footer-links li {
  display: inline-block;
  margin: 0 10px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
}

.footer-links a:hover {
  color: #000;
}

.adsense-links {
  margin-top: 10px;
}

.adsense-links a {
  color: #777;
  text-decoration: none;
  margin: 0 10px;
}

.adsense-links a:hover {
  color: #000;
}
