/* style.css — MeetingToDo App Styles */

:root {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

body {
  max-width: 760px;
  margin: 2rem auto;
  padding: 0 1rem;
  background: #fff;
}

h1 {
  font-size: 1.6rem;
  text-align: center;
}

button {
  padding: .7rem 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  cursor: pointer;
  color: white;
  font-weight: 600;
}

button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

#startBtn {
  background-color: #28a745;  /* green */
  border-color: #1e7e34;
}
#startBtn:hover {
  background-color: #218838;
}

#stopBtn {
  background-color: #dc3545;  /* red */
  border-color: #b21f2d;
}
#stopBtn:hover {
  background-color: #c82333;
}

.row {
  display: flex;
  gap: .75rem;
  margin: 1rem 0;
}

textarea, pre {
  width: 100%;
  min-height: 180px;
  padding: .75rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fafafa;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

th, td {
  text-align: left;
  padding: .5rem;
  border-bottom: 1px solid #eee;
}

tr:hover {
  background: #f7f7f7;
  cursor: pointer;
}

.status {
  margin: .5rem 0;
  color: #555;
}

#meter {
  width: 140px;
  height: 10px;
  background: #eee;
  border-radius: 6px;
  overflow: hidden;
  margin-left: 10px;
}

#meterFill {
  height: 100%;
  width: 0%;
  background-color: #28a745;
}
