body {
  background: #f1f1f1;
}

.parent {
  display: grid;
  grid-template-columns: minmax(400px, 65%) 1fr;
}

.navbar {
  background: #fff;
  border: 2px solid yellow;
}

.search-bar .form-control {
  border-radius: 2px;
  width: 80%
}

.search-bar .btn {
  border-radius: 2px;
  border-color: #d3d3d3;
  background: #f8f8f8;
  width: 20%;
  margin-left: -1px;
}

.search-bar .btn:hover {
  border-color: #c6c6c6;
  background: #f0f0f0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.10);
}

.video-player {
  border: 2px solid green;
  padding: 16px;
  margin-right: 10px;
}

.video-player-details {
  background: #fff;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  margin-top: 10px;
}

.video-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  background: #fff;
  padding: 8px;
  border: 2px solid blue;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  overflow-x: auto;
}

.video-list-entry {
  flex: 0 1 100%;
  font-size: 1.5rem;
  padding: 10px;
  border: 2px solid red;
}

.video-list-entry-title {
  font-weight: bold;
}

.video-list-entry-title:hover {
  color: #e62117;
  cursor: pointer;
}

.video-list-entry-detail {
  font-size: 1rem;
  color: #999;
}


/* for loading indicator */

.lds-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid gray;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: gray transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
