@import url('https://googleapis.com');

body {
  background-color: #a2d6f6;
  font-family: "Montserrat", Arial, sans-serif;
}

.time-signature-select {
    width: 7rem;
}

.tempo-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.settings-control-group {
    margin-bottom: 1rem;
}

.settings-toggle-group .form-check + .form-check {
    margin-top: 0.5rem;
}

.rhythm-toggle-column {
    margin-top: 2rem;
}

.settings-button-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.playback-button-row {
    display: flex;
    gap: 0.5rem;
}

.playback-button-row .btn {
    flex: 1;
}

.settings-toggle-group {
    margin-top: 1.25rem;
}

.beat-note-display {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    white-space: nowrap;
}

.tempo-stepper {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    width: 4.25rem;
}

.tempo-caret {
    border: 1px solid #ced4da;
    background: #ffffff;
    color: #212529;
    height: 1rem;
    padding: 0;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.tempo-caret::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 0.28rem solid transparent;
    border-right: 0.28rem solid transparent;
}

.tempo-caret-up::before {
    border-bottom: 0.35rem solid currentColor;
}

.tempo-caret-down::before {
    border-top: 0.35rem solid currentColor;
}

.tempo-caret:hover:not(:disabled) {
    background: #e9ecef;
}

.tempo-caret:disabled {
    background: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
}

.tempo-input {
    text-align: center;
    border-radius: 0;
    height: 2rem;
    padding: 0.15rem 0.25rem;
}

.tempo-input::-webkit-outer-spin-button,
.tempo-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.tempo-input {
    -moz-appearance: textfield;
}

#playback-button,
#stop-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 0.42em solid transparent;
    border-bottom: 0.42em solid transparent;
    border-left: 0.7em solid currentColor;
    display: inline-block;
}

.stop-icon {
    width: 0.72em;
    height: 0.72em;
    background-color: currentColor;
    display: inline-block;
}

.beat-note-svg {
    width: 1.25em;
    height: 1.25em;
    display: inline-block;
}

/* p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
  line-height: 1.5;
} */