/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/*
  Simple, clean styles for the SEO checker.
  These are intentionally minimal and beginner-friendly.
*/
:root {
  --bg: #f6f7fb;
  --text: #1f2937;
  --muted: #6b7280;
  --card: #ffffff;
  --border: #e5e7eb;
  --accent: #1d4ed8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

h1 {
  margin: 0 0 8px;
  font-size: 32px;
}

h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.subtitle {
  margin: 0 0 24px;
  color: var(--muted);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin: 0 0 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.field {
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
}

.input:focus {
  outline: 2px solid rgba(29, 78, 216, 0.2);
  border-color: var(--accent);
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.button:hover {
  filter: brightness(0.95);
}

.results-table {
  width: 100%;
  border-collapse: collapse;
}

.results-table td {
  padding: 10px 8px;
  border-top: 1px solid var(--border);
  vertical-align: top;
}

.results-table .label {
  width: 240px;
  font-weight: 600;
  color: var(--muted);
}

.alert {
  background: #fff5f5;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.link {
  color: var(--accent);
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .results-table .label {
    width: auto;
  }
}
