/* Zebra stripes */
.tavling-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}

.tavling-table th,
.tavling-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

.tavling-table tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.tavling-table tbody tr:hover {
  background-color: #e0f2e0;
}

/* Thumbnails */
.tavling-thumb {
  max-width: 50px;
  max-height: 50px;
  margin-right: 5px;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 4px;
}

/* Detail images */
.tavling-detail-images img.tavling-detail-img {
  max-width: 200px;
  margin: 10px;
  cursor: pointer;
  border-radius: 5px;
}

/* Responsive */
@media(max-width:768px){
  .tavling-table, .tavling-table thead, .tavling-table tbody, .tavling-table th, .tavling-table td, .tavling-table tr{
    display:block;
  }
  .tavling-table tr{
    margin-bottom:15px;
    border-bottom:2px solid #ddd;
  }
  .tavling-table td{
    text-align:right;
    padding-left:50%;
    position:relative;
  }
  .tavling-table td::before{
    content: attr(data-label);
    position:absolute;
    left:10px;
    width:45%;
    text-align:left;
    font-weight:bold;
  }
}
