/* ===== Стили для navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 0 20px;
  height: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.navbar .nav-links {
  display: flex;
  gap: 15px;
}
.navbar .nav-links a {
  display: block;
  color: #f2f2f2;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 15px;
  border-radius: 4px;
  transition: background-color 0.15s ease;
}
.navbar .nav-links a:hover,
.navbar .nav-links a.active {
  background-color: #575757;
  color: #fff;
}
.navbar .nav-actions {
  display: flex;
  gap: 10px;
  margin-right: -5px;
}
.navbar .nav-actions form {
  margin: 0;
  display: inline;
}
.navbar .nav-actions button {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.navbar .nav-actions button:hover {
  background-color: #45a049;
}
/* ===== Конец стилей navbar ===== */
