body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

nav {
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 1em;
}

main {
  flex: 1;
  padding: 2em;
}

header {
  text-align: center;
  margin-bottom: 2em;
}

.dashboard {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1em;
  align-items: center;
}

button {
  padding: 1em;
  font-size: 1em;
  cursor: pointer;
  border: none;
  background-color: #007BFF;
  color: white;
  border-radius: 5px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

.dropdown {
  padding: 1em;
}

.status-bar {
  margin-top: 2em;
  text-align: center;
}

.status-text {
  margin-bottom: 1em;
}

.progress-container {
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1em;
}

.progress-bar {
  height: 20px;
  width: 0;
  background-color: #007BFF;
  transition: width 0.5s;
}

.time-remaining {
  font-size: 1em;
  color: #333;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1em;
}

