/* General page styling */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
}
.active {
    background-color: #f44336; /* Red */
}
/* Styling for the note buttons */
#noteButtons {
    margin-bottom: 20px;
}

#noteButtons button {
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

/* Styling for the control buttons */
#controls button {
    background-color: #008CBA; /* Blue */
    color: white;
    padding: 10px 20px;
    margin: 2px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

/* Styling for the loop progress bar */
#loopProgress {
    width: 0%;
    height: 20px;
    background-color: #ff9800; /* Orange */
    margin-top: 20px;
    border-radius: 4px;
    transition: width 0.25s;
}
