/* Guarantee case detail field table (desktop and mobile). */
.case-detail-table {
  margin: 10px 0 28px;
  overflow: hidden;
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(26, 39, 57, 0.06);
}

.case-detail-table table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

.case-detail-table th,
.case-detail-table td {
  padding: 14px 20px;
  border: 0;
  border-bottom: 1px solid #edf0f4;
  color: #333;
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
  vertical-align: middle;
  word-break: break-word;
}

.case-detail-table th {
  width: 30%;
  color: #4c596b;
  font-weight: 600;
  background: #f7f9fc;
}

.case-detail-table td {
  background: #fff;
}

.case-detail-table tr:last-child th,
.case-detail-table tr:last-child td {
  border-bottom: 0;
}

.case-detail-table tr:hover th {
  background: #f1f5fa;
}

.case-detail-table tr:hover td {
  background: #fcfdff;
}

@media (max-width: 767px) {
  .case-detail-table {
    margin: 0 0 20px;
    border-radius: 7px;
    box-shadow: 0 3px 12px rgba(26, 39, 57, 0.06);
  }

  .case-detail-table th,
  .case-detail-table td {
    padding: 12px 10px;
    font-size: 14px;
    line-height: 1.55;
  }

  .case-detail-table th {
    width: 38%;
  }
}