  /* Оверлей */
  .overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }

  /* Модалка */
  .modal {
    background: rgba(255, 215, 0, 0.95);
    color: #000;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }

  .modal p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.4em;
  }

  /* Кнопки */
  .btn {
    padding: 8px 20px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 8px;
    font-size: 14px;
  }
  .btn-yes {
    background: green;
    color: white;
  }
  .btn-no {
    background: red;
    color: white;
  }