@import './shared/index.css';
@import './ui/index.css';

html,
body {
  margin: 0;
  height: 100%;
  font-size: 16px;
}

#app {
  max-width: 400px;
  margin: 0 auto;
}

.winning-number,
.lotto-number {
  width: 30px;
  height: 36px;
}

.bonus-number {
  width: 30px;
  height: 36px;
}

button:disabled {
  pointer-events: none;
}

.hidden {
  display: none;
  opacity: 0;
}

.lotto-list .lotto {
  display: flex;
  align-items: center;
}

.lotto-list .lotto .lotto-numbers {
  font-size: 1rem;
  display: none;
  padding-left: 5px;
}

.lotto-list.show-number {
  flex-direction: column;
}

.lotto-list.show-number .lotto .lotto-numbers {
  display: inline;
}

fieldset {
  border: none;
  padding: 0;
}
