img {
  border-radius: 20px;
   margin: 2%;
}

a,a:link,a:visited {
    text-decoration: none;
    color: #c90;
}

a:hover,a:selected {
    text-decoration: none;
    color: #fc0;
}

.b {font-weight: bold;}
.i {font-style: italic;}
.right {text-align: right; float: right; padding-right: 2vw;}

h1,h2,h3,h4 {color: #c90;}

h4 {text-align: center; font-size: 1.75vw;} 

.links {
    font-size: 1.1vw;
}

.disabled {
    color: #666;
    cursor: not-allowed;
}

.disabled:hover {color: #c33;}

select, option {line-height: 22px !important;}

.block {
    width: 100%;
    padding: 1vw;
    margin: 0;
}

li {margin: 0 !important;}

#footer {
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 1vw;
}

.right {
    text-align: right; 
    display: block; 
    float: right;
}

div#content {
     white-space: nowrap;
     display: flex;
     gap: 2%;
}

span.side {
    flex: 1;
    display: inline;
    white-space: nowrap;
    width: 50%;
}

/* Stack vertically when height > width (portrait) */
@media (orientation: portrait) {
    div#content {flex-direction: column;}
    span.side {width: 98%;}
    h4 {font-size: 3.5vw;} 
    .track-title {font-size: 2.5vw;}
    .downloads {font-size: 2vw;}
}

.player {
    width: 96%;
    margin: 2%;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

div.form {
    width: 96%;
    margin: 2%;
}

.player-header {
    padding: 20px;
    background: #222;
    border-bottom: 1px solid #333;
}

.player-header h1 {
    margin: 0;
    font-size: 24px;
}

audio {
    width: 100%;
    margin-top: 15px;
}

.playlist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #333;
    transition: background 0.2s ease;
}

.track:hover {
    background: #222;
}

.track.active {
    background: #c90;
    color: #000;
}

.track-title {
    cursor: pointer;
    font-weight: bold;
    flex: 1;
    font-size: 1.5vw;
    width: 100%;
}

.downloads {
    display: flex;
    gap: 10px;
}

.downloads a {
    background: #222;
    color: #ccc;
    text-decoration: none;
    font-size: 1.25vw;
    padding: 4px 8px;
    border: 1px solid #333;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.downloads a:hover {
    background: #c90;
    color: #000;
}

.form-group {
    width: 100%;
    padding: 0 5vw 0 5vw;
}

.input-group-addon {
    background-color: #c90;
    color: #111;
    width: 4vw;
	border-width: 2px; 
	border-style: solid;
	border-color: #c90;
	border-radius: 7px 0 0 7px !important; 
}

.form-control {
	border-width: 2px; 
	border-radius: 0 7px 0 0 !important;
	border-style: solid;
	border-color: #c90;
	font-weight: bold;
}

.help-block {
    display: block !important;
    border-width: 2px;
    border-style: solid;
	border-radius: 0 0 7px 0 !important;
    border-color: #c90;
    margin-bottom: 0;
    text-indent: 1vw;
    color: #c90;
    max-width: 100% !important;
    white-space: normal !important;
}

textarea {
    background-color: #111;
    width: 100%;
    resize: vertical;
    height: auto;
    margin-bottom: -10px;
}

.btn-row {text-align: right; float: right; width: 100%; margin-right: 4% !important;}

.btn-neg {
    color: #c66;
    background-color: #111;
    border: 2px solid #333;
}

.btn-pos {
    color: #6c6;
    background-color: #111;
    border: 2px solid #333;
}

.btn-neg:hover, .btn-pos:hover {
    color: #000;
    background-color: #c90;
    border: 2px solid #333;
}
