.aag-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.aag-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.aag-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2c3338;
}

.aag-form input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #8c8f94;
  border-radius: 4px;
  font-size: 14px;
  color: #2c3338;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.aag-form input[type="text"]:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
}

.aag-form input[type="text"]::placeholder {
  color: #646970;
}

.aag-form button {
  align-self: flex-start;
  padding: 10px 20px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.aag-form button:hover {
  background: #135e96;
}

.aag-form button:active {
  background: #0a4b78;
}

.aag-status {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #2271b1;
}

.aag-status.aag-error {
  color: #b32d2e;
}

.aag-result {
  margin-top: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #2c3338;
  padding: 0;
}

.aag-result > div {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
}

.aag-result > div:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Horoscope Generator Styles */
.aag-horoscope-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.aag-horoscope-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.aag-horoscope-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2c3338;
}

.aag-horoscope-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #8c8f94;
  border-radius: 4px;
  font-size: 14px;
  color: #2c3338;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c3338' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.aag-horoscope-form select:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
}

.aag-horoscope-form select:hover {
  border-color: #646970;
}

.aag-horoscope-form button {
  align-self: flex-start;
  padding: 10px 20px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.aag-horoscope-form button:hover {
  background: #135e96;
}

.aag-horoscope-form button:active {
  background: #0a4b78;
}

.aag-horoscope-status {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #2271b1;
}

.aag-horoscope-status.aag-error {
  color: #b32d2e;
}

.aag-horoscope-result {
  margin-top: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #2c3338;
  padding: 0;
}

.aag-horoscope-result p {
  margin: 0 0 16px 0;
  text-align: justify;
}

.aag-horoscope-result p:last-child {
  margin-bottom: 0;
}

.aag-horoscope-output {
  margin-top: 12px;
}

.aag-horoscope-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.aag-horoscope-actions.is-hidden {
  display: none;
}

.aag-horoscope-copy {
  padding: 8px 14px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.aag-horoscope-copy:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.aag-horoscope-copy:hover:not(:disabled) {
  background: #135e96;
}

.aag-horoscope-copy:active:not(:disabled) {
  background: #0a4b78;
}

.aag-oxymoron-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.aag-oxymoron-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.aag-oxymoron-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2c3338;
}

.aag-oxymoron-form input[type="text"],
.aag-oxymoron-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #8c8f94;
  border-radius: 4px;
  font-size: 14px;
  color: #2c3338;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.aag-oxymoron-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c3338' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.aag-oxymoron-form input[type="text"]:focus,
.aag-oxymoron-form select:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
}

.aag-oxymoron-form input[type="text"]::placeholder {
  color: #646970;
}

.aag-oxymoron-form button {
  align-self: flex-start;
  padding: 10px 20px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.aag-oxymoron-form button:hover {
  background: #135e96;
}

.aag-oxymoron-form button:active {
  background: #0a4b78;
}

.aag-oxymoron-status {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #2271b1;
}

.aag-oxymoron-status.aag-error {
  color: #b32d2e;
}

.aag-oxymoron-output {
  margin-top: 12px;
}

.aag-oxymoron-result {
  margin-top: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #2c3338;
  padding: 0;
}

.aag-oxymoron-result p {
  margin: 0 0 12px 0;
}

.aag-oxymoron-result p:last-child {
  margin-bottom: 0;
}

.aag-oxymoron-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.aag-oxymoron-actions.is-hidden {
  display: none;
}

.aag-oxymoron-copy {
  padding: 8px 14px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.aag-oxymoron-copy:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.aag-oxymoron-copy:hover:not(:disabled) {
  background: #135e96;
}

.aag-oxymoron-copy:active:not(:disabled) {
  background: #0a4b78;
}

.aag-quote-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.aag-quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.aag-quote-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2c3338;
}

.aag-quote-form input[type="text"],
.aag-quote-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #8c8f94;
  border-radius: 4px;
  font-size: 14px;
  color: #2c3338;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.aag-quote-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c3338' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.aag-quote-form input[type="text"]:focus,
.aag-quote-form select:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
}

.aag-quote-form input[type="text"]::placeholder {
  color: #646970;
}

.aag-quote-form select:hover {
  border-color: #646970;
}

.aag-quote-form button {
  align-self: flex-start;
  padding: 10px 20px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.aag-quote-form button:hover {
  background: #135e96;
}

.aag-quote-form button:active {
  background: #0a4b78;
}

.aag-quote-status {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #2271b1;
}

.aag-quote-status.aag-error {
  color: #b32d2e;
}

.aag-quote-output {
  margin-top: 12px;
}

.aag-quote-result {
  margin-top: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #2c3338;
  padding: 0;
}

.aag-quote-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.aag-quote-actions.is-hidden {
  display: none;
}

.aag-quote-copy {
  padding: 8px 14px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.aag-quote-copy:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.aag-quote-copy:hover:not(:disabled) {
  background: #135e96;
}

.aag-quote-copy:active:not(:disabled) {
  background: #0a4b78;
}

/* Poetry Generator Styles */
.aag-poetry-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.aag-poetry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.aag-poetry-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2c3338;
}

.aag-poetry-form input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #8c8f94;
  border-radius: 4px;
  font-size: 14px;
  color: #2c3338;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.aag-poetry-form input[type="text"]:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
}

.aag-poetry-form input[type="text"]::placeholder {
  color: #646970;
}

.aag-poetry-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #8c8f94;
  border-radius: 4px;
  font-size: 14px;
  color: #2c3338;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c3338' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.aag-poetry-form select:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
}

.aag-poetry-form select:hover {
  border-color: #646970;
}

.aag-poetry-form button {
  align-self: flex-start;
  padding: 10px 20px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.aag-poetry-form button:hover {
  background: #135e96;
}

.aag-poetry-form button:active {
  background: #0a4b78;
}

.aag-poetry-status {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #2271b1;
}

.aag-poetry-status.aag-error {
  color: #b32d2e;
}

.aag-poetry-result {
  margin-top: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #2c3338;
  padding: 0;
  white-space: pre-line;
}

.aag-poetry-result p {
  margin: 0 0 16px 0;
  text-align: left;
}

.aag-poetry-result p:last-child {
  margin-bottom: 0;
}

.aag-poetry-output {
  margin-top: 12px;
}

.aag-poetry-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.aag-poetry-actions.is-hidden {
  display: none;
}

.aag-poetry-copy {
  padding: 8px 14px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.aag-poetry-copy:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.aag-poetry-copy:hover:not(:disabled) {
  background: #135e96;
}

.aag-poetry-copy:active:not(:disabled) {
  background: #0a4b78;
}

/* ELI5 Generator Styles */
.aag-eli5-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.aag-eli5-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.aag-eli5-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2c3338;
}

.aag-eli5-form input[type="text"],
.aag-eli5-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #8c8f94;
  border-radius: 4px;
  font-size: 14px;
  color: #2c3338;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.aag-eli5-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c3338' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.aag-eli5-form input[type="text"]:focus,
.aag-eli5-form select:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
}

.aag-eli5-form input[type="text"]::placeholder {
  color: #646970;
}

.aag-eli5-form select:hover {
  border-color: #646970;
}

.aag-eli5-form button {
  align-self: flex-start;
  padding: 10px 20px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.aag-eli5-form button:hover {
  background: #135e96;
}

.aag-eli5-form button:active {
  background: #0a4b78;
}

.aag-eli5-status {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #2271b1;
}

.aag-eli5-status.aag-error {
  color: #b32d2e;
}

.aag-eli5-result {
  margin-top: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #2c3338;
  padding: 0;
}

.aag-eli5-result p {
  margin: 0 0 16px 0;
  text-align: justify;
}

.aag-eli5-result p:last-child {
  margin-bottom: 0;
}

.aag-eli5-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.aag-eli5-copy {
  padding: 8px 14px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.aag-eli5-copy:hover {
  background: #135e96;
}

.aag-eli5-copy:active {
  background: #0a4b78;
}

/* Email Formatter Styles */
.aag-email-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.aag-email-suggestions {
  margin-bottom: 24px;
  padding: 16px;
  background: #f6f7f7;
  border-radius: 4px;
}

.aag-email-suggestions-title {
  margin: 0 0 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: #2c3338;
}

.aag-email-suggestions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aag-email-suggestion-btn {
  padding: 6px 12px;
  background: #fff;
  color: #2271b1;
  border: 1px solid #2271b1;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.aag-email-suggestion-btn:hover {
  background: #2271b1;
  color: #fff;
}

.aag-email-suggestion-btn:active {
  background: #135e96;
  border-color: #135e96;
}

.aag-email-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.aag-email-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2c3338;
}

.aag-email-form input[type="text"],
.aag-email-form textarea,
.aag-email-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #8c8f94;
  border-radius: 4px;
  font-size: 14px;
  color: #2c3338;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.aag-email-form textarea {
  resize: vertical;
  min-height: 100px;
}

.aag-email-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c3338' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.aag-email-form input[type="text"]:focus,
.aag-email-form textarea:focus,
.aag-email-form select:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
}

.aag-email-form input[type="text"]::placeholder,
.aag-email-form textarea::placeholder {
  color: #646970;
}

.aag-email-form select:hover {
  border-color: #646970;
}

.aag-email-form button {
  align-self: flex-start;
  padding: 10px 20px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.aag-email-form button:hover {
  background: #135e96;
}

.aag-email-form button:active {
  background: #0a4b78;
}

.aag-email-status {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #2271b1;
}

.aag-email-status.aag-error {
  color: #b32d2e;
}

.aag-email-result {
  margin-top: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #2c3338;
  padding: 0;
}

.aag-email-result p {
  margin: 0 0 16px 0;
  text-align: justify;
}

.aag-email-result p:last-child {
  margin-bottom: 0;
}

.aag-email-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.aag-email-copy {
  padding: 8px 14px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.aag-email-copy:hover {
  background: #135e96;
}

.aag-email-copy:active {
  background: #0a4b78;
}

