#noteInput {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
}
#saveWorkout {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: rgb(220, 0, 0);
    color: white;
    border: none;
    cursor: pointer;
}
#saveWorkout:hover {
    background-color: #45a049;
}
#notesList {
    margin-top: 20px;
}
.note {
    background-color: #333;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    position: relative;
    padding-right: 80px;
}
.note button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    color: red;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.note button:hover {
    background-color: red;
    color: white;
}
.note .timestamp {
    font-size: 0.8em;
    color: #fff;
    margin-top: 5px;
}