.upload_music_nav_bar li {
    display: inline-flex;

}
.upload_music_nav_bar {
    text-align: center;
    margin: auto;
    width: 100%;
    box-shadow: 0px 0px 3px white;
    background: #3668ff;
}
.upload_form input[type="text"] {
    height: 30px;
    border: none;
    box-shadow: 0px 0px 1px black;
    border-radius: 33px;
    padding-left: 10px;
    padding-right: 10px;
    outline-color: #3668ff;
}
.select-custom {
  width: 33%;
  margin: auto;
  
}
label {
  width:200px;
  display: inline-block;
}
input {
  background: linear-gradient(359deg, white, #ffffff);
  color: black;
  padding: 10px;
  border: none;
  margin: 10px;
  box-shadow: 0px 0px 1px black;
  font-family: roboto;
  border-radius: 33px;
  width: 200px;
}
.upload_form input[type="file"] {
    display: none;
    webkit-user-select: inherit;
outline-color: red;}
.upload_form label {
    background: linear-gradient(0deg, white, #ffffff);
    color: black;
    padding: 10px;
    margin: 10px;
    box-shadow: 0px 0px 1px black;
    font-family: roboto;
    border-radius: 33px;
    height: 33px;
}
.upload_form select option {
    background: #3668ff;
    color: white;
    border: none;
    border-radius: 10px 5px;
    box-shadow: 0px 0px 1px;
}

option {
    border: none;
}
.upload_form select:focus {
    background: #3668ff;
    color: white;
    border: none;
    border-radius: 10px 5px;
    box-shadow: 0px 0px 1px;
}
.upload_form select {
    border: none;
    color: white;
    background: darkblue;
    padding: 10px;
    border-radius: 10px 5px
}
::-moz-selection { /* Code for Firefox */
  color: red;
  background: yellow;
}

::selection {
  color: red;
  background: yellow;
}
.upload_form  {
    line-height: 2;
    border: none;
    background: #ffffff;
    width: 400px;
    margin: auto;
}
* {
    margin: 0;
}
body {
    background: radial-gradient(#ffffff, #ecececcf);
}
.upload_music_nav_bar a {
    text-decoration: none;
    color: white;
    font-family: arial;
}
/* The container must be positioned relative: */
.select-custom {
  position: relative;
  font-family: Arial;
}

.select-custom select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #3668ff;
  box-shadow: 0px 0px 3px
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 20px;
  right: 10%;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000 transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #000000;
  padding: 8px 16px;
  border: none;
  /* border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent; */
  cursor: pointer;
  /* border-radius: 10px; */
  background: white;
  box-shadow: 0px 0px 4px white;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-left: 10px;
  /* border-radius: 10px; */
  width: 100px;
  margin: auto;
}
.select-selected {
  color: #000000;
  border-radius: 0px!important;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  width: 100px;
  margin: auto;
}
/* Style items (options): */
.select-items {
  /* position: absolute; */
  /* background-color: #3668ff; */
  top: 100%;
  left: 0;
  color: white;
  right: 0;
  z-index: 99;
  border: none;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}