  /* Общие стили для body */
  html, body {
    height: 100%;
    background: url('../../images/vote/pattern.png') repeat;
  }
  h1, h2, h3, h4, h5, h6 {
      color:#1E2957;
  }
  h5 {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 15px;
  }
  .participant-link.hide {
      display:none;
  }

  /* Центрирование и выравнивание содержимого */
  .auth-container, .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
  }

  /* Логотип */
  .logo {
    max-height: 200px;
    max-width: 200px;
    width: 100%;
    height: 100%;
    margin: 30px 0;
  }

  /* Стиль карточки */
  .auth-card, .participants-container, .participant-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }
  .participant-container img {
      max-width:100%;
  }

  /* Стили для элементов формы */
  .form-control, .btn, .rating-select {
    font-size: 1.1rem;
    padding: 0.75rem;
  }

  .form-control {
    height: calc(2.5em + .75rem + 2px);
  }
  .voted .participant-link {
    border: 1px solid #A8D5A8;
    background-color: #E8F3E8;
    padding: 10px 10px 10px 30px;
  }
  .voted .rate {
    background-color: #A8D5A8; /* Светло-серый фон */
    color: #2E7D32; /* Черный текст */
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    padding: 4px 10px;
    line-height: 18px;
    margin-left:auto;
  }
  /* Стили для ссылок участников */
  .participant-link {
    display: flex;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    color: #333;
    background-color: #fff;
  }
  .participant-link:hover {
      text-decoration: none;
      color:#1E2957;
  }

  .participant-link:hover {
    background-color: #f1f1f1;
    color: #1E2957;
  }

  /* Стили для кнопок */
  .btn-primary {
    color: #fff;
    background-color: #1E2957;
    border-color: #1E2957;
  }

  .btn-primary:hover,
  .btn-primary:active,
  .btn-primary:not(:disabled):not(.disabled).active, 
  .btn-primary:not(:disabled):not(.disabled):active, 
  .show > .btn-primary.dropdown-toggle,
  .btn-primary.focus, .btn-primary:focus{
    background-color: #263872;
    border-color: #263872;
  }

  /* Стили для фото участников */
  .participant-photo {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
  }

  /* Стиль кнопки "назад" */
  .back-button {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .error {
    margin-top: 15px;
    color: red;
    text-align: center;
  }
  .vote-result {
      color:#1E2957;
  }
  .vote-result .score {
      font-size:24px;
      font-weight:600;
  }
  .participant-result {
    display: flex;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
  }