body {
  font-family: 'Old Standard TT', serif;
  /* font-family: 'Baloo 2', cursive; */
  background-color: beige;
}

#app {

}

.heading-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 15px;
}

.title {
  margin-right: 15px;
}

.v-animal-avatar {
  margin-top: 7px;
}

.final-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

table {
  width: 100%;
}

tr {
  border: solid;
  border-width: 1px 0;
  border-color: rgb(203, 202, 202);
}

tr:first-child {
  border-top: none;
}
tr:last-child {
  border-bottom: none;
}

td {
  padding-top: 5px;
  padding-bottom: 5px;
}

.coin-image {
  width: 20px;
}

.favorites {
  text-align: left;
}

.table-container {
  width: 800px;
  height: 600px;
  overflow: scroll;
}

#table-head {
  text-align: left;
  position: sticky;
  top: 0;
  background: beige;
}

/* CommentBox */

.comment-component {
  width: 400px;
  height: 600px;
  border-style: solid;
  margin: 60px 20px 20px 20px;
  padding: 20px;
}

.comment-component form {
  margin-top: 20px;
}

.comment-box {
  overflow: scroll;
  height: 300px;

}

/* CommentBox css from codepen */

.tip {
  width: 0px;
  height: 0px;
  position: absolute;
  background: transparent;
  border: 10px solid #ccc;
}

.tip-up {
  top: -25px; /* Same as body margin top + border */
  left: 10px;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

.tip-down {
  bottom: -25px;
  left: 10px;
  border-right-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.tip-left {
  top: 10px;
  left: -25px;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.tip-right {
  top: 10px;
  right: -25px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.dialogbox .body {
  position: relative;
  max-width: 300px;
  height: auto;
  margin: 20px 10px;
  padding: 5px;
  background-color: #dadada;
  border-radius: 3px;
  border: 5px solid #ccc;
}

.body .message {
  min-height: 30px;
  border-radius: 3px;
  font-family: Arial;
  font-size: 14px;
  line-height: 1.5;
  color: #797979;
}

#nickname {
  font-weight: bold;
}

#comment {
  font-style: italic;
  margin-left: 8px;
}

/* Always show scroll */
::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, .5);
  box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

/* Cards */

.trending-title {
  width: 800px;
}

.trending-title h3 {
  margin-right: auto;
}

.trending-box {
  display: flex;
  flex-direction: row;
  width: 800px;
  height: 200px;
  /* justify-content: space-between; */
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 120px;
  height: 130px;
  margin: 20px 0;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.card-container {
  padding: 2px 8px;
  text-align: center;
  font-size: 12px;
}

.card-container p {
  margin-bottom: 0px;
  margin-top: 5px;
}

.card img {
  width: 50%;
  margin: auto;
  display: block;
  margin-top: 10px;
}

.rec.rec-pagination {
  display: none;
}