.invisible {
  display: none;
}

body {
  font-family: system-ui, sans-serif;
  background: #f4f6f8;
  margin: 0;
  padding: 40px;
}

.container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}

#stopwatch {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.cost-display {
  text-align: center;
  margin-bottom: 30px;
}

.textWrapper {
  margin: auto;
  width: 60%;
  text-align: center;
}

#totalCost {
  font-size: 36px;
  font-weight: bold;
  color: #e53935;
}

#members {
  display: flex;
  align-items: center;
  flex-direction: column;
}

button {
  border: none;
  padding: 10px 16px;
  margin: 5px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

#timer {
  display: flex;
  justify-content: center;
}
#timer.invisible {
  display: none;
}

.shadow {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: 0.4s;
}
.shadow:hover {
  box-shadow: none;
}

#start {
  background: #4caf50;
  color: white;
}

#stop {
  background: #ff9800;
  color: white;
}

#reset {
  background: #9e9e9e;
  color: white;
}

#addMember {
  background: #2196f3;
  color: white;
  margin-top: 25px;
  margin-bottom: 15px;
}

#confirmMembers {
  background: #673ab7;
  color: white;
}

.delete {
  background: #e53935;
  color: white;
}

.info {
  margin: 20px 0;
  padding: 15px;
  background: #f7f7f7;
  border-radius: 8px;
}

.member {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.member input {
  width: 120px;
  padding: 6px;
}

.section-title {
  font-weight: bold;
  margin: 20px 0 10px;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}/*# sourceMappingURL=style.css.map */