body {
    font-family: 'Trebuchet MS', sans-serif;
    color: #7c7e38;
    padding: 0;
    margin: 0;
    background-color: #bbbb94;
}

hr {
    border-top: .1em solid #d7d193;
}

#pageHeader {
    background-image: linear-gradient(25deg, #4d5021, transparent);
    color: #aba682;
    padding: 1em;
    margin-bottom: 1em;
    box-shadow: 0em .0em 4em rgba(0, 0, 0, .2);
    text-shadow: .2em .2em .5em rgba(0, 0, 0, .5);
}

#pageTitle {
    font-size: 2em;
    font-style: italic;
    font-weight: bold;
}

#pageSubTitle {
    font-size: 1.2em;
    font-style: italic;
}

#browserNotSupported {
    display: none;
    width: 40em;
    margin-left: auto;
    margin-right: auto;
}

#greeting {
    width: 20em;
    padding: 1em;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

#connectError {
    background-color: #862828;
    border-radius: .5em;
    color: #ffaaaa;
    padding: 1em;
    display: none;
}

#sentYouATrack {
    text-align: center;
    display: none;
    margin-bottom: 2em;
}

#sentTrackName {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 1em;
}

#uploadTrackContainer {
    max-width: 30em;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

.uploadTrackBox {
    margin: 1em;
    padding: 1em;
    text-align: center;
    border-radius: 1em;
    border-width: .25em;
    border-color: rgba(0, 0, 0, .5);
    border-style: dashed;
    user-select: none;
    cursor: pointer;
}

.uploadTrackBox:hover {
    background-color: rgb(252 255 173);
}

#fileDropOverlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    font-size: 2em;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: rgba(255,255,255,0.5);
    pointer-events: none;
    transition: all .5s ease-in-out;
}

#deleteTrackButton {
    margin-top: 1em;
    background-color: #fb8a8a;
}

#confirmDeleteContainer {
    margin-top: 1em;
    display: none;
}

.confirmDeleteButton {
    width: 6em !important;
    margin-left: .5em;
    margin-right: .5em;
}

.reallyDeleteText {
    color: #c73131;
    flex-grow: 1;
}

.button {
    user-select: none;
    cursor: pointer;
    transition: background-color .2s;
}

.button:hover {
    background-color: #fafea7;
}

#greeting p {
    text-align: center;
    width: 100%;
}

#trackList {
    display: none;
    margin-left: 10em;
    margin-right: 10em;
}

.trackFolder {
    border-radius: 1em;
    background-color: #f2f5c9;
    border: .15em solid #d7d193;
    padding: 1em;
    margin: .5em;
    box-shadow: .5em .5em 2em rgba(0, 0, 0, .1);
}

.musicInfo {
    max-width: 40em;
    margin-left: auto;
    margin-right: auto;
}

.trackFolderContent {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5em;
}

.trackItem {
    text-align: center;
    flex: 0 0 10em;
    padding: 1em;
    font-weight: bold;

    border-radius: .5em;
    background-color: #d7d193;

    box-shadow: .25em .25em .5em rgba(0, 0, 0, .1);
}

.trackItem img {
    width: 13em;
    height: 13em;
    border-radius: .5em;
}

.header {
    text-align: center;
    font-weight: bold;
    margin-bottom: 1em;
    font-size: 1.2em;
}

.instructions {
    font-weight: bold;
}

.hint {
    font-style: italic;
    font-size: .9em;
}

#trackModal {
    display: none;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, .3);
}

#trackModalContent {
    display: flex;
    width: 40vmin;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20vmin;
}

#trackModalInner {
    width: 100%;
    text-align: center;
}

#trackModalHeader {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: .5em;
}

#trackModalImg {
    width: 30vmin;
    height: 30vmin;
}

#shareOptions {
    width: 100%;
}

#urlShare {
    width: 100%;
}

#urlShareTextArea {
    display: block;
    width: 100%;
    height: 8em;
}

#shareOptions button {
    width: 100%;
}

#urlTrackContainer {
    display: none;
    width: 30em;
    margin-left: auto;
    margin-right: auto;
}

#closeURLTrackButton {
    display: block;
    color: #9e3636;
    background-color: transparent;
    border: none;
    font-size: 2em;
    cursor: pointer;
    margin-left: auto;
}

#closeURLTrackButton:hover {
    color: #da7272;
}

#urlTrackRenameHeader {
    text-align: center;
}

#urlTrackRenameField {
    display: block;
    text-align: center;
    font-size: 1.2em;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#urlTrackRenameChecker {
    margin: .5em;
    text-align: center;
}

#urlTrackSendToDeviceButton {
    display: block;
    margin-left: auto;
    margin-right: auto;
}