/* Variables */
/* Global Resets & Typography */
body {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.875rem;
  color: #011205;
  background-color: #ffffff;
  margin: 0;
}
a {
  color: #011205;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
hr {
  border: none;
  height: 1px;
  color: #bcd6c1;
  background-color: #bcd6c1;
}
h3 {
  margin-top: 30px;
}
/* Layout */
.container {
  width: 99%;
  max-width: 960px;
  margin: 0 auto;
  background-color: #f2f8f4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
}
header {
  background-color: #18311d;
  padding: 2px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.1rem;
  padding: 5px 10px;
}
header nav .inline-list {
  width: 100%;
  flex-wrap: wrap;
  font-size: 0.875rem;
}
header nav .inline-list .auth-separator {
  margin-left: auto;
}
header nav .inline-list li a {
  color: #ffffff;
}
header nav .inline-list li a:hover {
  color: #ffffff;
  text-decoration: underline;
}
header nav .logo a {
  font-weight: bold;
  color: #ffffff;
  font-size: 1rem;
}
header nav .logo a.logo-symbol:hover {
  text-decoration: none;
}
header nav .logo a.logo-symbol:hover + a {
  text-decoration: underline;
}
main {
  padding: 10px 10px;
  background-color: #f2f8f4;
  flex: 1;
}
footer {
  padding: 10px;
  font-size: 0.875rem;
  color: #7b8b7e;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-content p {
  margin: 0;
}
footer .footer-content .links {
  margin-left: auto;
}
footer .footer-content .links .inline-list {
  font-size: 0.875rem;
}
/* Common Components */
.inline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  align-items: center;
  color: #7b8b7e;
  font-size: 0.75rem;
  /* Small Screen Adjustment */
}
.inline-list li {
  display: flex;
  align-items: center;
}
.inline-list a,
.inline-list button {
  color: #7b8b7e;
  text-decoration: none;
  font-size: inherit;
}
.inline-list a:hover,
.inline-list button:hover {
  color: #011205;
  text-decoration: underline;
}
.inline-list a:hover .bot-emoji,
.inline-list button:hover .bot-emoji {
  text-decoration: none;
  display: inline-block;
}
@media (max-width: 350px) {
  .inline-list {
    flex-wrap: wrap;
    gap: 5px;
    /* Reduce gap to prevent overflow */
    justify-content: center;
    /* Center items when wrapped */
  }
}
.bot-emoji {
  text-decoration: none !important;
  display: inline-block;
  margin-right: 2px;
}
.account-type-info {
  color: #7b8b7e;
  font-size: 0.875rem;
}
.job-tag {
  color: #7b8b7e;
}
.text-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-style: normal;
  color: #7b8b7e;
}
.text-button:hover {
  color: #011205;
  text-decoration: underline;
}
.more-link {
  padding-top: 10px;
}
.more-link a {
  color: #7b8b7e;
}
.more-link a:hover {
  text-decoration: underline;
  color: #011205;
}
/* Post Styles */
.post {
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.post .post-title {
  font-size: 1rem;
  color: #011205;
}
.post .post-title a {
  color: #011205;
}
.post .post-title a:visited {
  color: #7b8b7e;
}
.post .post-title .domain {
  font-size: 0.75rem;
  color: #7b8b7e;
}
.post .post-title .job-symbol,
.post .post-title .promoted-symbol {
  text-decoration: none;
}
.post .post-title .job-symbol:hover,
.post .post-title .promoted-symbol:hover {
  text-decoration: none;
}
.post .post-title .job-symbol:hover ~ a,
.post .post-title .promoted-symbol:hover ~ a {
  text-decoration: underline;
}
.post .post-meta {
  font-size: 0.75rem;
  color: #7b8b7e;
  width: 100%;
  margin: 2px 0;
}
.post .post-content {
  margin: 2px 0;
  font-size: 0.875rem;
  color: #011205;
  max-width: 60ch;
  white-space: pre-line;
  word-wrap: break-word;
}
/* Comment Styles */
.comments {
  margin-top: 20px;
}
.comment {
  margin: 10px 0;
}
.comment .comment {
  margin-left: 20px;
}
.comment .comment-meta button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-style: normal;
  color: #7b8b7e;
}
.comment .comment-meta button:hover {
  color: #011205;
  text-decoration: underline;
}
.comment .comment-content {
  font-size: 0.875rem;
  color: #011205;
  margin: 2px 0 5px 0;
  max-width: 60ch;
  white-space: pre-line;
  word-wrap: break-word;
}
.comment .show-more {
  margin: 5px 0 10px 0;
}
.comment .show-more > button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-style: normal;
  color: #7b8b7e;
  margin-left: 20px;
}
.comment .show-more > button:hover {
  color: #011205;
  text-decoration: underline;
}
/* User Profile */
.user-profile .user-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.user-profile .user-header .inline-list {
  font-size: 0.875rem;
}
.user-switch a {
  color: #7b8b7e;
  margin-left: 5px;
  font-size: 0.875rem;
}
.user-switch a:hover {
  color: #011205;
  text-decoration: underline;
}
.user-switch a:hover {
  color: #011205;
  text-decoration: underline;
}
.tabs {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #bcd6c1;
  margin-bottom: 20px;
  margin-top: 30px;
}
.tabs a {
  padding: 5px 10px;
  margin-bottom: -1px;
  color: #7b8b7e;
  border-bottom: 2px solid transparent;
}
.tabs a.active {
  color: #011205;
  border-bottom: 2px solid #011205;
  font-weight: bold;
}
.tabs a:hover {
  text-decoration: none;
  color: #011205;
}
/* Upcoming Page */
.info-message {
  background-color: #ffffff;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 6px;
}
.info-message p {
  margin: 5px 0;
}
/* Forms */
form div {
  margin-bottom: 10px;
}
label {
  display: block;
  width: auto;
  margin-bottom: 5px;
  color: #011205;
}
input[type="text"],
input[type="password"],
input[type="url"],
input[type="email"],
textarea {
  background-color: #ffffff;
  border: 1px solid #bcd6c1;
  border-radius: 6px;
  color: #011205;
  padding: 5px;
  font-size: 0.875rem;
}
button {
  background-color: #f0f0f0;
  color: #011205;
  border: 1px solid #bcd6c1;
  border-radius: 6px;
  font-size: 0.875rem;
  padding: 5px 10px;
  cursor: pointer;
}
button:hover {
  background-color: #e0e0e0;
}
button.text-button {
  background: none;
  border: none;
  padding: 0;
  color: #7b8b7e;
}
button.text-button:hover {
  color: #011205;
  background: none;
}
.primary-button {
  background-color: #18311d;
  color: #ffffff;
  border: 1px solid #bcd6c1;
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
}
.primary-button:hover {
  background-color: #bcd6c1;
  color: #011205;
}
.secondary-button {
  background-color: #ffffff;
  color: #011205;
  border: 1px solid #bcd6c1;
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
}
.error {
  color: #eb0808;
}
.success {
  color: #106524;
}
/* Error Page */
.error-container {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
.error-container h1 {
  font-size: 4rem;
  color: inherit;
  margin-bottom: 10px;
}
.error-container p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #828282;
}
.error-message {
  color: #eb0808;
}
/* Pricing Tiers */
.pricing-tiers {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.pricing-tiers .pricing-tier {
  flex: 1;
  border: 1px solid #bcd6c1;
  padding: 15px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
.pricing-tiers .pricing-tier:hover {
  border-color: #011205;
}
.pricing-tiers .pricing-tier.selected {
  background-color: #f2f8f4;
  border-color: #011205;
  border-width: 2px;
  padding: 14px;
}
.pricing-tiers .pricing-tier .tier-title {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #011205;
}
.pricing-tiers .pricing-tier .tier-desc {
  font-size: 0.9em;
  color: #7b8b7e;
  margin-bottom: 15px;
  flex-grow: 1;
}
.pricing-tiers .pricing-tier .tier-price {
  font-weight: bold;
  font-size: 1.2em;
  color: #011205;
  align-self: flex-start;
}
/* Removal Options */
.removal-options {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: stretch;
}
.removal-options .option-card {
  flex: 1;
  border: 1px solid #bcd6c1;
  padding: 15px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
}
.removal-options .option-card h2 {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #011205;
  margin-top: 0px;
}
.removal-options .option-card p {
  font-size: 0.9em;
  color: #7b8b7e;
  margin-bottom: 15px;
}
.removal-options .option-card strong {
  color: #011205;
}
.removal-options .option-card form {
  margin-top: auto;
}
.removal-options .option-card form div {
  margin-bottom: 0;
}
.removal-options .option-card button {
  width: 100%;
}
.removal-options .option-divider {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #7b8b7e;
}
.back-link {
  margin-top: 20px;
}
