html {
    /* Add any custom spinner styles here */
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}
.form-group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.cls-1 {
    fill: #fff;
}

.cls-1,
.cls-2 {
    stroke: #000;
    stroke-miterlimit: 10;
}

.pressed {
    fill: red;
}
.pressedOutOfKey {
    fill: forestgreen;
}
    .form-group label {
        margin-right: 10px;
        white-space: nowrap;
        width: 200px; /* Fixed width for the label */
        text-align: left; /* Align text to the right */
    }

    .form-group select {
        /*        order: 2;*/
        /*        flex-grow: 1;*/
        width: 200px; /* Set a fixed width for the dropdown */
        text-align: center; /* Center the text inside the dropdown */
    }
.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Align items at the start */
    height: 100vh; /* Full viewport height */
    padding-top: 20px; /* Add some padding at the top */
}
.modulation {
    border: 2px solid red; /* Example: Add a red border */
    /* You can add more styles as needed */
}

.custom-spacing {
    margin-right: 20px; /* Adjust the value as needed */
}
.video-info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    margin-bottom: 20px; /* Add margin to create space below the video */
}

.player-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Add margin to create space above the image */
}

.tonic-center-image {
    width: 100%;
    max-width: 1000px; /* Ensure the image does not exceed the player width */
    height: auto;
}

.info-container {
    display: flex;
    justify-content: space-between; /* Distribute space between items */
    width: 100%;
    padding: 10px;
    background-color: rgba(185, 255, 0, 0.38); /* Add a background color for better visibility */
    z-index: 10; /* Ensure the info container is above other elements */
}

.tempo-container {
    flex: 1; /* Allow the container to grow */
    text-align: left; /* Align text to the left */
}
.text-container {
    flex: 1; /* Allow the container to grow */
    display: flex;
    justify-content: flex-end; /* Align the container to the right */
}

#text {
    font-size: 2em; /* Set the font size to be much bigger */
    margin-bottom: 10px;
    color: black; /* Ensure the text color is visible */
    background-color: rgba(255, 255, 255, 0.7); /* Add a background color for better visibility */
    padding: 5px; /* Add some padding for better readability */
    border-radius: 5px; /* Add rounded corners */
    z-index: 10; /* Ensure the text and tempo are above other elements */
    text-align: right; /* Align text to the right */
}

#tempo {
    font-size: 2em; /* Set the font size to be much bigger */
    margin-bottom: 10px;
    color: black; /* Ensure the text color is visible */
    background-color: rgba(255, 255, 255, 0.7); /* Add a background color for better visibility */
    padding: 5px; /* Add some padding for better readability */
    border-radius: 5px; /* Add rounded corners */
    z-index: 10; /* Ensure the text and tempo are above other elements */
    text-align: left; /* Align text to the right */
}
@keyframes highlight {
    0% {
        box-shadow: 0 0 30px #1879e1;
    }

    100% {
        box-shadow: 0 0 0 rgba(255, 255, 0, 0);
    }
}

.highlight {
    animation: highlight 0.5s ease-out;
}
.image-size_tonicCenter {
    width: 1190px;
    height: 300px;
}
.image-container {
    position: relative; /* Make the container a positioned element */
    display: flex;
    justify-content: center;
    align-items: center;
}

#circle {
    position: absolute; /* Position the circle absolutely within the container */
    width: 30px;
    height: 30px;
    background-color: red;
    border-radius: 60%;
    transition: left 0.5s, top 0.5s; /* Smooth transition */
}
.controls {
    display: flex;
    align-items: center;
    z-index: 10; /* Ensure the controls are above other elements */
}

.time-rectangle {
    display: inline-block;
    padding: 5px 10px;
    border: 2px solid black;
    border-radius: 5px;
    background-color: lightgray;
}

#current-time {
    font-size: 1.2em;
    color: #333;
}

#time-value {
    font-weight: bold;
    color: #007BFF; /* Change this to your preferred color */
}

.spaced-button {
    margin-left: 10px; /* Adjust the value as needed */
}

.controls button, .controls p {
    margin-right: 10px;
}

.parent-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 30vh; /* Ensure the parent container takes the full height */
    width: 100%;
}

.responsive-svg {
    width: 100%;
    height: auto;
}

.responsive-canvas {
    width: 80px;
    height: 50vh; /* Adjust the height calculation as needed */
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%; /* Ensure full height for body and html */
}

#midiGraph {
    max-width: 90%;
}

label, select {
    font-size: 1.2em; /* Increase font size for better visibility */
    margin: 10px; /* Add some margin for spacing */
    z-index: 10; /* Ensure the label and select are above other elements */
    color: black; /* Ensure the text color is visible */
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px; /* Adjust the height as needed */
    background-color: #f5f5f5;
    text-align: center;
    padding: 20px 0; /* Add padding for better spacing */
}

.page-link {
    margin-top: 20px; /* Adjust the value as needed */
}

.text-center {
    padding-bottom: 80px; /* Add padding to avoid collision with the footer */
}
button:disabled {
    background-color: grey;
    color: white;
    cursor: not-allowed;
}
