body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin: 20px;
}

h1 {
  font-size: 1.7rem;
}

nav {
    margin-bottom: 20px;
}

.screen {
    display: block;
}

#setup-screen {
    margin-top: 20px;
}

form div {
    margin-bottom: 10px;
}

label {
    display: inline-block;
    width: 80px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

button {
    margin-left: 10px;
    border: 1px solid black;
    background: #fff;
    padding: 0.5rem 1rem;
    font-weight: bold;
}

ul button {
  font-size:0.8rem;
  padding: 0.2rem 0.4rem;
}

#workout-machines-list li .details {
    width: 70%;
}

#workout-machines-list li .checkbox-container {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#workout-machines-list li .checkbox-container input {
    width: 30px;
    height: 30px;
}

#history-panel {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

#history-panel.open {
    right: 0;
}

#show-history-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

small {
  position: absolute;
  bottom: 5px;
  left: 5px;
}

