/* Log Crawl — reconstructed stylesheet (original ~2010-2011) */

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
}

body.app {
  background: #f5f5f5;
  color: #333;
  font-family: 'Molengo', Georgia, serif;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: #FF0E8B;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #cc0a6f;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: 'Molengo', Georgia, serif;
  font-weight: normal;
  line-height: 1.3;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 1.5em 0;
}

hr.spacer {
  border: none;
  margin: 2em 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 0.4em 0.6em;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
  border-color: #FF0E8B;
  box-shadow: 0 0 0 2px rgba(255, 14, 139, 0.12);
}

input.small  { width: 180px; }
input.medium { width: 260px; }

input[type="submit"] {
  background: #FF0E8B;
  border: none;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.5em 1.4em;
  transition: background 0.2s;
}

input[type="submit"]:hover {
  background: #cc0a6f;
}

label {
  display: inline-block;
  width: 160px;
  font-weight: bold;
  color: #555;
}

form div {
  margin-bottom: 0.8em;
}

/* ============================================================
   Layout
   ============================================================ */
#container {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   Header
   ============================================================ */
header {
  background: #1a1a1a;
  padding: 0 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  position: relative;
}

header h1 {
  font-size: 1.6rem;
  color: #fff;
  padding: 0.7em 0;
  white-space: nowrap;
}

header h1 a {
  color: #fff;
  text-decoration: none;
}

header menu {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
}

header menu li {
  display: inline-block;
}

header menu li a {
  display: block;
  color: #ccc;
  padding: 0.85em 1.1em;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

header menu li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}

header menu li.hl a {
  background: #FF0E8B;
  color: #fff;
  border-radius: 3px;
  margin-left: 0.5em;
}

header menu li.hl a:hover {
  background: #cc0a6f;
}

/* Header image — hide since asset is missing */
header img {
  display: none;
}

/* ============================================================
   Main content
   ============================================================ */
#main {
  flex: 1;
  padding: 2.5em 2.5em 2em;
}

#main h2 {
  font-size: 1.6rem;
  color: #1a1a1a;
  margin-bottom: 1.2em;
  border-bottom: 2px solid #FF0E8B;
  padding-bottom: 0.4em;
  display: inline-block;
}

#main ul {
  margin: 1em 0 1.5em 1em;
}

#main ul li {
  list-style: disc;
  margin-bottom: 0.5em;
  color: #444;
}

#main ul li a {
  color: #FF0E8B;
}

/* Try it for free section */
.tryitforfree {
  display: flex;
  align-items: center;
  gap: 1.5em;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 1.2em 1.5em;
  margin: 1.5em 0;
}

.tryitforfree img {
  display: none; /* image missing */
}

.tryitforfree span {
  font-size: 1rem;
  color: #555;
}

/* Explain image — hide since asset is missing */
img.explain {
  display: none;
}

/* Decaled helper text */
.decaled {
  margin-top: 1em;
  font-size: 0.9rem;
  color: #666;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: #1a1a1a;
  padding: 1.2em 2.5em;
}

footer hr {
  display: none;
}

footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 1.5em;
  align-items: center;
}

footer ul li {
  font-size: 0.8rem;
  color: #999;
}

footer ul li a {
  color: #bbb;
  text-decoration: none;
}

footer ul li a:hover {
  color: #FF0E8B;
  text-decoration: none;
}

/* ============================================================
   Forms (signin / signup)
   ============================================================ */
#signinUserForm,
#addUserForm {
  max-width: 420px;
}

/* ============================================================
   Code / Error pages
   ============================================================ */
code, pre {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  padding: 0.8em 1em;
  display: block;
  color: #c0392b;
  margin: 0.5em 0;
}

/* ============================================================
   Statistics / User pages
   ============================================================ */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
}

table th {
  background: #1a1a1a;
  color: #fff;
  padding: 0.5em 0.8em;
  text-align: left;
  font-weight: normal;
}

table td {
  padding: 0.45em 0.8em;
  border-bottom: 1px solid #eee;
  color: #444;
}

table tr:hover td {
  background: #fafafa;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 640px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5em 1em;
  }

  header menu {
    flex-wrap: wrap;
  }

  #main {
    padding: 1.5em 1em;
  }

  footer {
    padding: 1em;
  }

  footer ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4em;
  }

  label {
    width: 100%;
    display: block;
    margin-bottom: 0.2em;
  }

  input.small,
  input.medium {
    width: 100%;
  }
}
