
/* === 🧠 Универсальный Reset === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === ⚙️ Базовая типографика === */
body {
  background-color: #121415;
  color: #e7f2ee;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  font-size: 14px;
}

/* === 📬 Посты и контент === */
.postbody {
  font-size: 14px;
  line-height: 1.6;
}
.postbody .content,
.postbody p,
.postbody span,
.postbody div {
  font-size: inherit;
  line-height: inherit;
}

/* === 😊 Фикс размера эмоджи (везде где надо) === */
img.emoji,
img.emoji-picker,
.postbody img.emoji,
.content img.emoji {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  display: inline-block;
}

/* === 🔘 Формы и элементы === */
input,
textarea,
select,
button {
  background-color: #1a1d1f;
  border: 1px solid #2a2e31;
  color: #e7f2ee;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #2fa877;
  box-shadow: 0 0 0 2px rgba(47, 168, 119, 0.3);
}

/* === 🟢 Кнопки === */
button,
input[type="submit"] {
  background-color: #2fa877;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

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

/* === 🔗 Ссылки === */
a {
  color: #2fa877;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* === 🧭 Навигация / хлебные крошки === */
.breadcrumbs,
.navlinks {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 12px;
}

/* === 📅 Дата регистрации блок === */
#joined-days {
  font-weight: bold;
  color: #2fa877;
}

/* === 📄 Подпись === */
.signature {
  color: #a0a0a0;
  font-style: italic;
  border-top: 1px dashed #444;
  margin-top: 10px;
  padding-top: 10px;
  font-size: 13px;
}

/* === ☠️ Дизайн ошибки === */
.error {
  color: #ff4d4f;
  background-color: #2a1f1f;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 14px;
}

/* === 🎨 Tailwind совместимые fallback классы (если кто-то добавлял их в HTML) === */
.text-green {
  color: #2fa877;
}

.bg-dark {
  background-color: #1a1d1f;
}

.border-light {
  border-color: #2a2e31;
}


/* 20.04.2025*/

.inputbox {
	background-color: #1a1d1f;
	border: 1px solid #2a2e31;
	color: #e7f2ee;
	padding: 8px 12px;
	border-radius: 4px;
}

.button2 {
	background-color: #2fa877;
	color: white;
	font-weight: 600;
	border-radius: 4px;
	padding: 6px 12px;
}

.button2:hover {
	background-color: #40c590;
}

