/* Digital Brutalism Theme */
body.theme-brutalist {
  background: #f0f0f0;
  color: #000;
  font-family: "Courier New", Courier, monospace;
  cursor: vertical-text; /* Typewriter beam */
}

body.theme-brutalist #theme-select {
  background: #ffff00;
  color: #000;
  border: 3px solid #000;
  font-weight: 900;
  text-transform: uppercase;
  padding: 5px 10px;
  cursor: pointer;
}

body.theme-brutalist .card {
  background: #fff;
  border: 4px solid #000;
  border-radius: 0;
  box-shadow: 8px 8px 0px #000;
  transition: transform 0.1s;
}

body.theme-brutalist .card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0px #000;
}

body.theme-brutalist button {
  background: #ffff00; /* Neon Yellow */
  color: #000;
  border: 3px solid #000;
  border-radius: 0;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 4px 4px 0px #000;
}

body.theme-brutalist button:hover {
  background: #ff00ff; /* Neon Magenta */
  color: #fff;
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0px #000;
}

body.theme-brutalist button:active {
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px #000;
}

body.theme-brutalist button:disabled {
  background: #ccc;
  box-shadow: none;
  transform: none;
  border-color: #888;
}

body.theme-brutalist .timer-display {
  font-family: "Courier New", Courier, monospace;
  font-size: 80px;
  color: #000;
  background: #00ffff; /* Neon Cyan */
  display: inline-block;
  padding: 10px 20px;
  border: 3px solid #000;
  margin: 20px 0;
}

body.theme-brutalist #goal-input {
  background: #fff;
  border: 3px solid #000;
  border-radius: 0;
  color: #000;
  font-weight: bold;
}

body.theme-brutalist header {
  background: #ff00ff;
  border-bottom: 5px solid #000;
  color: #fff;
}

body.theme-brutalist header h1 {
  font-size: 32px;
  text-shadow: 3px 3px 0px #000;
}

body.theme-brutalist .session-type {
  color: #000;
  text-decoration: underline;
}

body.theme-brutalist .session-entry {
  border-bottom: 2px solid #000;
}

/* Theme Toggle Button Positioning */
.theme-toggle-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
