/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

/* Acronym Generator Container */
#ag-acronym-generator {
  max-width: 600px;
  margin: 0;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Input Field */
#ag-user-input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

/* Buttons */
#ag-generate-btn,
#ag-save-pdf-btn {
  background-color: #225d31;
  border: none;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  margin-right: 10px;
  font-weight: bold;
}

#ag-generate-btn:hover,
#ag-save-pdf-btn:hover {
  background-color: #1a4525;
}

/* Result Text */
#ag-result {
  font-size: 18px;
  color: #222;
  margin-top: 20px;
}

/* Error Message */
#ag-error {
  font-size: 14px;
  color: red;
  margin-top: 10px;
}

/* PDF Preview Box */
#ag-pdf-preview {
  background: #f1f1f1;
  padding: 12px;
  border-radius: 6px;
  margin-top: 20px;
  font-size: 14px;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  #ag-user-input {
    font-size: 15px;
  }

  #ag-acronym-generator {
    padding: 15px;
  }

  #ag-pdf-preview {
    font-size: 13px;
  }
}
