#output {
  width: 100%;
  max-width: 100%;
  height: 350px;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid #ccc;
  white-space: nowrap;
}

#output svg {
  display: inline-block;
  transform: scale(3);
  transform-origin: top left;
}

body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background: #f7f7f7;
  margin: 0;
}

#config-form {
  background: #fff;
  padding: 9px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  margin-bottom: 20px;
}

#config-form h2 {
  color: #333;
  text-align: center;
  margin: 0 0 20px;
}

#config-form .row {
  display: flex;
  align-items: stretch;
  gap: 5px;
  flex-wrap: wrap;
  flex-direction: column;
}

#config-form label {
  display: block;
  margin-top: 0;
  margin-bottom: 3px;
}

#config-form .row label {
  margin-bottom: 0.3em;
}

#config-form select,
#config-form input[type=number] {
  width: 100%;
  padding: 7px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 17px;
}

#config-form button {
  display: block;
  width: 100%;
  padding: 7px;  
  background: #5cb85c;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 17px;
  cursor: pointer;
}

#config-form button#start-button {
  margin-top: 0;
  margin-left: 1em;
  width: auto;
  flex-shrink: 0;
}

#fullscreenButton,#history-btn,
#help-btn {
  background: #337ab7 !important;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  padding: 10px 10px;
  cursor: pointer;
  line-height: 1em;
  margin-top: 0 !important;
}

#help-btn {
  background: #ffc94c !important;
}

#config-form button:hover {
  opacity: .9;
}

#config-form .bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 2px;
}

#exercise-result {
  background: #f8fff8;
  border: 1px solid #d2eac6;
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 15px 16px;
  font-size: 1.08em;
  min-height: 32px;
  color: #35713d;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(60, 80, 120, 0.18);
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  min-width: 0;
  max-width: calc(100vw - 40px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  padding: 30px 18px 18px 18px;
  font-size: 1.1em;
  text-align: center;
  position: relative;
  width: 95vw;
}

.modal-content h2 {
  margin-top: 0;
}

#history-modal .modal-content table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
}
#history-modal .modal-content th, #history-modal .modal-content td {
  border: 1px solid #eee;
  padding: 4px 7px;
  text-align: center;
}
#history-modal .modal-content th {
  background: #f7f7f7;
  font-weight: bold;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 13px;
  border: none;
  background: none;
  font-size: 1.4em;
  cursor: pointer;
}

/* === Добавлено: прокрутка истории по горизонтали и вертикали === */

/* Вертикальная прокрутка при высоком контенте модалки истории */
#history-modal .modal-content {
  max-height: 85vh;
  overflow: auto;
}

/* Обёртка для таблицы истории: обе оси */
#history-modal .modal-content .table-scroll {
  max-height: 70vh;
  overflow: auto; /* X и Y */
  width: 100%;
}

/* Таблица истории: минимальная ширина даёт горизонтальный скролл при узком экране */
#history-modal .modal-content .history-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 900px; /* при нехватке места появляется горизонтальная прокрутка */
  margin: 0 auto;
}

#history-modal .modal-content .history-table th,
#history-modal .modal-content .history-table td {
  border: 1px solid #eee;
  padding: 4px 7px;
  text-align: center;
}

#history-modal .modal-content .history-table th {
  background: #f7f7f7;
  font-weight: bold;
}
