/* Recording title */
.recording-title {
  background: #666;
  width: 400px;
  margin: 0;
  padding: 20px 20px 0px 20px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.1em;
  box-sizing: border-box;
}

/* Duration styling */
.duration {
  color: #fff;
  font-size: 0.9em;
  margin-left: auto;
}

/* Main container styling */
#playlist,
audio,
.summary {
  background: #666;
  width: 400px;
  margin: 0;
  display: block;
  box-sizing: border-box;
}

/* Audio player adjustments - more specific */
#audio {
  margin-bottom: 0;
  padding: 20px;
  height: 100px;
}
audio#audio {
  margin-bottom: 0;
  padding: 20px;
  height: 100px;
}

/* Summary specific styling */
.summary {
  margin-top: 0;
  padding-top: 20px;
  margin-bottom: 0;
  padding-bottom: 20px;
  text-align: center;
  width: 400px;
}

/* Playlist adjustments */
#playlist {
  margin-top: 0;
  padding: 20px;
}

/* Link styling */
a {
  color: #333;
  text-decoration: none;
}
.active a {
  color: #5db0e6;
  text-decoration: none;
}
#playlist li a,
.summary {
  padding: 5px;
  display: block;
  color: #fff;
}
#playlist li a:hover {
  text-decoration: none;
}

/* List item styling */
#playlist li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#playlist li:nth-child(odd) {
  background: #8a5d5a;
}
#playlist li:nth-child(even) {
  background: #80808030;
}

/* General styling */
body {
  font-family: arial;
}
