/* Shared site-wide styles */

body {
  margin: 0;
  padding: 0;
  background-color: #3b3b3b;;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e1e1e;
  padding: 12px 24px;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.nav-links a,
.nav-links .btn-light {
  color: #ccc;
  text-decoration: none;
}

/* Container & headings */
.container {
  padding: 24px;
  max-width: 720px;
  margin: 0 auto;
}

h1 {
  margin-bottom: 12px;
  font-size: 22px;
  color: #f0f0f0;
}

/* Forms & text areas */
form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  margin-bottom: 4px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  background-color: #1e1e1e;
  color: white;
  border: 1px solid #484848;
  border-radius: 4px;
  padding: 12px;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #666;
}

/* Buttons */
button,
input[type="submit"] {
  background-color: #2d7d46;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  width: fit-content;
}

button:hover,
input[type="submit"]:hover {
  background-color: #3a9657;
}

/* Transcript box */
#transcript {
  background-color: #1e1e1e;
  border: 1px solid #444;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  min-height: 150px;
  line-height: 1.5;
  font-size: 15px;
}

#response {
  background-color: #1e1e1e;
  margin-top: 20px;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #444;
  font-size: 14px;
}
