* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #f8fbff;
  color: #073763;
}

.w-14 {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
}

.min-h-screen {
  min-height: 100vh;
}

.min-h-\[90vh\] {
  min-height: 90vh;
}

#linesPanel {
  overflow-y: visible;
  max-height: none;
}

.line-row {
  display: grid;
  grid-template-columns: 140px 120px 1fr 48px 48px;
  gap: .5rem;
  align-items: center;
  padding: .25rem 0;
}

.line-time {
  padding: .45rem;
  border-radius: .75rem;
  background: #cee1ff;
  border: 4px solid transparent;
  font-weight: 700;
  text-align: center;
}

.line-time.has-time {
  background: #a0ffb8;
}

.line-input {
  padding: .5rem;
  border-radius: .5rem;
  background: #eef6ff;
  border: none;
  width: 100%;
}

.line-btn {
  padding: .4rem .6rem;
  border-radius: .5rem;
  cursor: pointer;
}

.line-btn:focus {
  outline: none;
  box-shadow: none;
}

.line-btn.active-tap {
  border: 1px solid red;
  background-color: rgba(255, 0, 0, 0.05);
}

@media (max-width:900px) {
  .line-row {
    grid-template-columns: 1fr;
  }

  .line-time {
    display: none;
  }
}
