/* General body styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Add some basic styling for the canvas */
#pianoRollCanvas {
    border: 1px solid #dee2e6; /* Bootstrap's border color */
    background-color: #f8f9fa; /* Bootstrap's light background */
    border-radius: 0.375rem; /* Rounded corners */
    cursor: default;
    height: 300px; /* Default height */
    display: block;
    margin-top: 1.5rem;
}

/* Style for the download link container */
#downloadLinkContainer {
    margin-top: 1rem;
    text-align: center;
}

#downloadLinkContainer a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #198754; /* Bootstrap's success color */
    color: white;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

#downloadLinkContainer a:hover {
    background-color: #157347; /* Darker success color */
}

#downloadLinkContainer a[disabled] {
    background-color: #6c757d; /* Bootstrap's secondary color */
    cursor: not-allowed;
    pointer-events: none;
}

#chordButtonContainer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem; /* Optional spacing between buttons */
}