body {
  font-family: "Merriweather";
  background-color: #232136;
}

.view {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#input-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    scale: 1.5;
}

#music-link {
    margin: 0;
    text-align: left;
}

#music-link > a {
    color: #c4a7e7;
}

.file-entry {
    padding: 1.5rem 3rem 1.15rem 3rem;
    text-align: center;
    background-color: #393552;
    border-radius: 0.5rem;
    padding: 1.5rem 4rem 0.8rem 4rem;
}

.file-button {
    padding: 1rem;
    border-radius: 1rem;
    border: 0.15rem solid;
    border-color: #c4a7e7;
    background-color: #c4a7e7;
    transition: background-color 0.2s;
    scale: 1.1;
    margin-bottom: 0.5rem;
}

.file-button:hover {
    cursor: pointer;
    transition: background-color 0.2s;
    background-color: #232136;
    color: #c4a7e7;
}

.file-btn-label {
    cursor: pointer;
}

#file-chosen {
  font-size: 14px;
  color: #e0def4;
}

input[type = "submit"] {
    font-family: "Merriweather";
    background-color: #c4a7e7;
    margin: 0.4rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 0.15rem solid;
    border-color: #c4a7e7;
    margin-bottom: 0;
    transition: background-color 0.2s;
    margin-left: 0;
}

input[type = "submit"]:hover {
    cursor: pointer;
    background-color: #232136;
    color: #c4a7e7;
    transition: background-color 0.2s;
}

input[type = "password"] {
  font-family: "Merriweather";
  background-color: #908caa;
  border-radius: 0.2rem;
  border: 0;
  height: 1.8rem;
  color: #e0def4;
  margin: 0.3rem;
  margin-bottom: 0;
  text-align: center;
}

#music-link {
    font-size: 14px;
    text-align: left;
    width: 16rem;
}

.curr-path {
    font-family: "MesloLGS NF";
    font-size: 0.9rem;
    color: #c4a7e7;
    background-color: #393552;
    border-radius: 1rem;
    text-align: center;
    padding: 0.5rem 3rem 0.5rem 1rem;
    margin-bottom: 1rem;
    width: 50rem;
}

.path-list {
    overflow: hidden;
    border-radius: 1rem;
    margin: 0;
    margin-bottom: 10rem;
}

.path-list ol {
    color: #c4a7e7;
    background-color: #393552;
    border-radius: 1rem;
    padding: 1rem 1rem 2rem 1rem;
    width: 52rem;
    margin: 0;

    max-height: 30rem;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.path-list ol::-webkit-scrollbar {
    width: 0.39rem;
}

.path-list ol::-webkit-scrollbar-track {
    border-radius: 1rem;
    background-color: transparent;
 
}

.path-list ol::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background-color: #c4a7e7;
}

.path-list ol::-webkit-scrollbar-button:end:increment {
  height: 2.1%;
  display: block;
  color: #c4a7e7;
}

.path-list ol::-webkit-scrollbar-button:start:decrement {
  height: 2.1%;
  display: block;
}

ol li:hover{
    background-color: #c4a7e7;
    transition: background-color 0.2s;
    color: #393552;
    padding: 0.3rem;
    cursor: pointer;
}

ol li {
    list-style: none;
    border-radius: 1rem;
    padding: 0.05rem;
}

ol li > a {
    font-family: "MesloLGS NF";
    color: inherit;
}

h1 {
    color: #c4a7e7;
}

h3 {
    color: #c4a7e7;
}

.dir-path {
    font-weight: bold;
}

/* Merriweather font */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: url("/resource/fonts/merriweather-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: url("/resource/fonts/merriweather-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* MesloLGS NF font */
@font-face {
 font-family: "MesloLGS NF";
 src: url("/resource/fonts/MesloLGS%20NF%20Regular.ttf");
 font-weight: normal;
 font-style: normal;
}
@font-face {
    font-family: "MesloLGS NF";
    src: url("/resource/fonts/MesloLGS%20NF%20Bold.ttf");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "MesloLGS NF";
    src: url("/resource/fonts/MesloLGS%20NF%20Italic.ttf");
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: "MesloLGS NF";
    src: url("/resource/fonts/MesloLGS%20NF%20Bold%20Italic.ttf");
    font-weight: bold;
    font-style: italic;
}





