/* assets/css/style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9fafa;
  color: #111;
  line-height: 1.6;
}

.container {
  padding: 2rem 1rem;
}

input[type="url"] {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  margin-top: 1rem;
}

button {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  background-color: #1a73e8;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  margin-top: 1.5rem;
}

button:hover {
  background-color: #0f5ad4;
}

a {
  color: #1a73e8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/* Generated article area */
.generated-article h1,
.generated-article h2,
.generated-article h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 600;
  color: #222;
}

.generated-article p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.generated-article ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.generated-article li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .main-header h1 img {
    height: 60px;
  }
}
input[type="checkbox"] {
  accent-color: #4caf50; /* Green checkbox */
  margin-right: 8px;
}




/* Optional styling (add to end of styles.css) */
input, textarea {
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  margin-top: 0.5rem;
  box-sizing: border-box;
}

form label {
  margin-top: 1rem;
  font-weight: 500;
}



p {
  margin: 1rem 0;
  line-height: 1.6;
}

ul, ol {
  margin: 1rem 0 1rem 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

h1, h2, h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

code {
  background: #f2f2f2;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-family: Consolas, monospace;
  font-size: 0.95em;
}

pre code {
  display: block;
  padding: 1em;
  overflow-x: auto;
  background: #f2f2f2;
  border-radius: 6px;
}

blockquote {
  border-left: 4px solid #ccc;
  margin: 1em 0;
  padding: 0.5em 1em;
  color: #666;
  background: #f9f9f9;
}
strong {
  font-weight: bold !important;
}

strong {
  font-weight: 700 !important; /* 700 = bold */
}
div[style*="box-shadow"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
