/* СОВРЕМЕННЫЙ CSS для форума о днях рождениях */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap');

:root {
  --main-bg: #fff0f5;
  --accent-bg: #ffe4f0;
  --header-bg: #ffb6c1;
  --text-color: #333;
  --link-color: #d63384;
  --link-hover: #ad1457;
  --border-color: #f8c4d4;
  --button-bg: #ffc0cb;
  --button-text: #660033;
  --radius: 12px;
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --font-main: 'Nunito', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--main-bg);
  font-family: var(--font-main);
  color: var(--text-color);
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: var(--link-hover);
}

hr {
  border: none;
  border-top: 1px solid var(--border-color);
}

img {
  max-width: 100%;
  border-radius: var(--radius);
}

.table, table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  background-color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
th, td {
  padding: 12px;
  text-align: left;
}
th {
  background-color: var(--header-bg);
  color: #fff;
  font-size: 1rem;
}

.row:nth-child(even) {
  background-color: var(--accent-bg);
}

input, textarea, select {
  font-family: var(--font-main);
  font-size: 14px;
  padding: 8px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background-color: #fff;
}

input.button, .button {
  background-color: var(--button-bg);
  color: var(--button-text);
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}
input.button:hover, .button:hover {
  background-color: var(--link-hover);
  color: #fff;
}

.navbar {
  background: var(--header-bg);
  color: white;
  padding: 1rem;
  font-weight: bold;
  text-align: center;
  border-bottom: 3px solid var(--link-color);
}

.postbody {
  font-size: 1rem;
  line-height: 1.6;
  background-color: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.quote, .code {
  font-family: monospace;
  background: #fce4ec;
  border-left: 4px solid var(--link-color);
  padding: 1rem;
  margin: 1rem 0;
  border-radius: var(--radius);
  color: #444;
}

/* Аватар по умолчанию */
.guestavatar {
  width: 100px;
  height: 100px;
  background: var(--accent-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--link-color);
  font-weight: bold;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  th, td {
    display: block;
    width: 100%;
  }

  .postbody {
    font-size: 0.95rem;
  }

  .navbar {
    font-size: 1rem;
  }
}
