/* 🌟 WhatsApp Message Generator – Clean & Spaced CSS */

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9f9;
  padding: 20px;
}

.container {
  max-width: 700px;
  margin-left: -25px;
  margin-right: -25px;
  background: #fff;
  border: 1px solid #E4E4E7;
  padding: 20px;
  border-radius: 8px;
  color: #596172;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

h2 {
  color: #48d6de;
  text-align: center;
  margin-bottom: 25px;
}

/* Labels and Inputs */
label {
  display: block;
  margin-top: 20px;
  font-weight: bold;
  color: #333;
}

input[type="text"],
textarea,
select {
  width: 100%;
  padding: 10px;
  margin-top: 8px;       /* space between label and input */
  margin-bottom: 18px;   /* space after input */
  border: 1px solid #E4E4E7;
  border-radius: 5px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
  transition: all 0.2s ease;
}

input[type="text"]:focus,
textarea:focus,
select:focus {
  border-color: #48d6de;
  outline: none;
  box-shadow: 0 0 5px rgba(72, 214, 222, 0.4);
}

/* Checkboxes */
.checkboxes {
  margin-top: 8px;
  margin-bottom: 25px;
}

.checkboxes label {
  display: inline-block;
  margin-right: 15px;
  margin-top: 5px;
  color: #444;
}

/* Buttons */
button {
  background-color: #48d6de;
  color: #fff;
  border: none;
  padding: 12px 18px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #3cc7d0;
}

#generatedMessage {
  width: 100%;
  margin-top: 25px;
  padding: 14px;
  font-family: 'Roboto', sans-serif;
  border: 1px solid #E4E4E7;
  border-radius: 6px;
  resize: vertical;
  background-color: #fafafa;
  color: #333;
  white-space: pre-wrap;    /* preserves spaces and new lines */
  line-height: 2;           /* adds visible vertical gap */
  letter-spacing: 0.3px;    /* slight spacing for readability */
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

