/* Fixes the page from shifting to the left when the scrollbar appears */
body {
    overflow: scroll;
}

/* Remove the arrows in number input fields (Chromium based browsers) */
/* input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
} */

/* Firefox */
/* input[type=number] {
    -moz-appearance: textfield;
} */

#promptView {
    background-color: #4d4d4d;
    border-radius: 10px;
}

.globalButton {
    height: 58px;
} 

.promptKeyframe {
    background-color: #3b3b3b;
    border-radius: 10px;
}

.sortable-chosen {
    background-color: rgb(54, 67, 81);
}

/* Hides the ghost element created when dragging */
.sortable-drag {
    display: none;
}

/* Lock label */
.lock {
    border-radius: 10px;
}

.btn {
    border-radius: 10px;
}

#fileInput {
    height: 58px;
}

.view {
    max-width: 1000px;
}

#navBarContainer {
    max-width: 1000px;
}