/**
 * COLORS PALETTE 2
 */

/**
 * BORDER RADIUS
 */

/**
 * LAYOUT
 */

body {
  font-family: "Noto Sans Lao", "Noto Sans", sans-serif;
  background-color: #f1f5f8;
  color: #102a42;
}

#site-header {
  background-color: #003e6b;
  color: #daedfb;
  padding: 16px;
}

#site-header .title {
  font-size: 30px;
  text-align: center;
  font-weight: 300;
}

.lyric-list-item {
  flex: 1;
  border-bottom: 1px solid #f1f5f8;
  display: flex;
  align-items: center;
}

.lyric-list-item:last-child {
  border-bottom: none;
}

.lyric-list-item:hover,
.lyric-list-item:focus,
.lyric-list-item:active {
  background-color: #fcfcfc;
  cursor: pointer;
}

.lyric-info {
  flex: 1;
}

.lyric-title {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 0;
  padding: 16px 24px 0;
}

.lyric-type {
  font-weight: 300;
  color: #829ab0;
  text-transform: uppercase;
  font-size: 14px;
  padding: 0 24px 16px;
}

.button-group {
  margin: 0 16px;
}

.button-download {
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-download g {
  fill: #617d98;
}

.lyric-list-wrapper {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.lyric-list {
  display: flex;
  flex-direction: column;
}

.lyric-list.no-result {
  padding: 24px;
  font-size: 18px;
}

