body {
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    background-color: #242424;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    user-select: none;
}

.custom-audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #333;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.custom-audio-player button,
.custom-audio-player input {
    background: none;
    border: none;
    color: white;
    margin: 0 5px;
}

.custom-audio-player input[type="range"] {
    -webkit-appearance: none;
    margin: 0 10px;
    height: 5px;
    border-radius: 5px;
    background: #999;
    outline: none;
}

.custom-audio-player .volume-control {
    width: 80px;
}

.custom-audio-player .icon {
    font-size: 25px;
}

.custom-audio-player .volume-control::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
}

.custom-audio-player input[type="range"].progress-bar {
    flex-grow: 1;
    background: #fff;
}

.time-indicator {
    color: white;
    margin-right: auto;
}

.mp3-file {
    background-color: #353535;
    color: white;
    padding: 10px;
    margin: 30px 65px 5px 30px;
    border-radius: 5px;
    list-style-type: none;
}

.mp3-file a {
    color: white;
    cursor: pointer;
}

input[type="text"] {
  width: 60%;
  padding: 10px;
  margin: 8px 0;
  margin-right: 5px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: white;
}

button {
  padding: 10px 15px;
  margin: 8px 0;
  border: none;
  border-radius: 2px;
  background-color: white;
  cursor: pointer;
}

button:hover {
  background-color: #f5f5f5;
}

.artist-panel {
    position: fixed;
    right: 0;
    top: 10px;
    width: 0;
    overflow-x: hidden;
    background-color: #242424;
    z-index: 1000;
    padding-top: 30px;
    height: auto;
    max-height: 100%;
    overflow-y: auto;
}

.artist-panel-content h2, .artist-panel-content button {
    color: white;
    text-align: left;
    padding-left: 30px;
}

.artist-panel-content button {
    display: block;
    margin-top: 20px;
    background: none;
    border: none;
    text-align: left;
}

.open-panel-btn {
    position: fixed;
    right: 0;
    top: 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    z-index: 1001;
}

.open-panel-btn:hover {
    background-color: #555;
}

.rules-btn {
    position: fixed;
    right: 0;
    top: 55px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    z-index: 1001;
    margin-left: 5px;
}

.rules-btn:hover {
    background-color: #555;
}

.banner-left, .banner-right {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 410px;
    z-index: 10;
}

.banner-left {
    left: 25px;
}

.banner-right {
    right: 25px;
}

.banner-left img, .banner-right img {
    width: 100%;
    height: auto;
}