/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #1f1f1f;
    color: #eeeeee;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  h1, h2, h3 {
    color: #ffc400;
  }
  
  a {
    color: #ff2971;
    font-size: medium;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Pricing Cards */
  .pricing-cards {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
  }
  
  .card {
    background: #3b3b3b;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 30%;
  }
  
  .card h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  /* Forms */
  form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  input, textarea, button {
    padding: 10px;
    border: none;
    border-radius: 4px;    
    font-size: medium;
  }
  
  input, textarea {
    background: #2E2E2E;
    color: #E0E0E0;
  }
  
  button {
    background: #ffc400;
    color: #121212;
    cursor: pointer;
  }
  
  button:hover {
    background: #FFD54F;
  }
  
  /* Admin Panel */
  /* .sidebar {
    width: 250px;
    background: #1E1E1E;
    padding: 20px;
  }
  
  .sidebar ul {
    list-style: none;
  }
  
  .sidebar a {
    padding: 10px;
    border-radius: 4px;
  }
  
  .sidebar a:hover {
    background: #2E2E2E;
  } */
  .header {
    position: fixed; /* Фиксирует шапку на экране */
    top: 0; /* Размещает её вверху */
    left: 0; /* Выравнивает по левому краю */
    width: 100%; /* Делает её шириной во весь экран */
    background-color: #333; /* Цвет фона шапки */
    color: white; /* Цвет текста */
    padding: 15px 20px; /* Внутренние отступы */
    z-index: 1000; /* Убедитесь, что шапка выше других элементов */
    display: flex; /* Используем Flexbox для горизонтального расположения */
    justify-content: center; /* Распределение элементов по ширине */
    align-items: center; /* Выравнивание по центру по вертикали */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Добавляем тень для лучшего визуального эффекта */
    border-radius: 0px 0px 10px 10px;
  }
  
  /* .logo h1 {
    margin: 0;
    font-size: 24px;
  } */
  
  .navbar ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .content {
    padding-top: 80px;
    margin-left: 5%;
    margin-right: 5%;
  }