:root {
  --bg-colour: #527484;
  --border-radius: .4rem;
  --main-font: consolas;
}

body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #e8e5d5;
}

.timer-container {
  display: flex;
  gap: 1em;
}

.section-block {
  background-color: var(--bg-colour);
  padding: 1rem;
  border-radius: var(--border-radius);
  flex-grow: 1;
  display: flex;
  gap: .5rem;
  justify-content: center;
}

.section-block input, .seconds-counter {
  background: none;
  color: white;
  flex-grow: 1;
  font-size: 4em;
  border: none;
  font-family: consolas;
}

.section-block.negative input, .section-block.negative .seconds-counter {
  color: #919191;
}

.section-block input:focus {
  outline: none;
}

.negative-indicator {
  background: #46cc43;
  width: .8rem;
  height: .8rem;
  border-radius: .1rem;
}

.section-block.negative .negative-indicator {
  background: #d61313;
}

.input-container {
  background-color: #222;
  flex-grow: 1;
  border-radius: .2rem;
  display: flex;
  flex-direction: column;
}

.input-container {
  font-family: helvetica;
  color: white;
}

.input-container p {
  margin: 0;
}

.timer-value.live {
  pointer-events: none;
}

.btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-container button {
  background: var(--bg-colour);
  border: none;
  border-radius: var(--border-radius);
  flex-grow: 1;
}

.btn-container .start-pause-btn {
  width: 100%;
}

button img {
  width: 2em;
  height: 2em;
}

.dummy-submit {
  display: none;
}

#add-timer-btn {
  background: var(--bg-colour);
  border: none;
  width: 100px;
  border-radius: var(--border-radius);
  color: white;
  padding: 1em;
  font-family: consolas;
}
