/* Body & Container */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: white;
}

#workoutContainer {
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-sizing: border-box;
  min-height: 100vh;
}

/* Nav */
#menuBar {
  display: flex;
  justify-content: space-between;
  background: #1e1e1e;
  padding: 10px;
  flex-wrap: wrap;
}

#menuBar button {
  background: #ff4d4d;
  border: none;
  color: white;
  padding: 10px 16px;
  margin: 2px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.1s;
}

#menuBar button:active {
  transform: scale(0.97);
}

/* Inputs & Buttons */
input[type="text"] {
  width: 100%;
  max-width: 400px;
  padding: 12px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #444;
  background: #222;
  color: white;
  box-sizing: border-box;
}

button {
  background: #ff4d4d;
  border: none;
  color: white;
  padding: 10px 16px;
  margin: 8px 0;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.1s;
}

button:active {
  transform: scale(0.97);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

th, td {
  border: 1px solid #444;
  padding: 8px;
  text-align: left;
  font-size: 16px;
}

th {
  background: #222;
}

/* Responsive */
@media (max-width: 600px) {
  input[type="text"], button {
    font-size: 14px;
    padding: 10px;
  }

  th, td {
    font-size: 14px;
    padding: 6px;
  }
}
