.box-default {
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
}

.licence-table-box {
  width: 100%;
  min-width: 0;
}

.licence-table-wrap {
  width: 100%;
  max-width: 100%;
  max-height: 420px;
  overflow: auto;
  border: 1px solid #d8e2f0;
  border-radius: 12px;
  background: #ffffff;
  box-sizing: border-box;
}

.licence-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
}

.licence-table th,
.licence-table td {
  box-sizing: border-box;
  border-right: 1px solid #d8e2f0;
  border-bottom: 1px solid #d8e2f0;
  padding: 10px 12px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.35;
  background: #ffffff;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  transition: all 0.5s ease;
}

.licence-table thead th {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #f1f6ff;
  color: #1f2937;
  font-weight: 700;
}

.licence-table th:first-child,
.licence-table td:first-child {
  width: 28%;
}

.licence-table th:not(:first-child),
.licence-table td:not(:first-child) {
  width: 24%;
}

.licence-table .sticky-col {
  position: sticky;
  left: 0;
  z-index: 4;
  background: #f8faff;
  color: #1f2937;
  font-weight: 600;
  text-align: left;
}

.licence-table .sticky-corner {
  z-index: 8;
  background: #e8f1ff;
}

.licence-table th:last-child,
.licence-table td:last-child {
  border-right: none;
}

.licence-table tbody tr:last-child td {
  border-bottom: none;
}

.licence-table tbody tr:hover td {
  background: #f9fbff;
  font-weight: 700;
}

.licence-table tbody tr:hover .sticky-col {
  background: #eef5ff;
}

@media (max-width: 768px) {
  .licence-table-wrap {
    max-height: 360px;
  }

  .licence-table th,
  .licence-table td {
    padding: 7px 6px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .licence-table th:first-child,
  .licence-table td:first-child {
    width: 25%;
  }

  .licence-table th:not(:first-child),
  .licence-table td:not(:first-child) {
    width: 25%;
  }
}

@media (max-width: 420px) {
  .licence-table th,
  .licence-table td {
    padding: 6px 4px;
    font-size: 0.72rem;
  }
}

.yes {
  color: #16803c;
  font-weight: 700;
}

.no {
  color: #b42318;
  font-weight: 700;
}