.table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.technical-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

/* Header */

.technical-table thead th {
  background: linear-gradient(135deg, #4b2d73, #6d45a5);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 18px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Body */

.technical-table tbody td {
  padding: 18px;
  text-align: left;
  font-size: 16px;
  border-bottom: 1px solid #edf1f5;
  transition: 0.3s;
}

/* Zebra */

.technical-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

/* Hover */

.technical-table tbody tr:hover {
  background: #eef5ff;
}

/* First Column */

.technical-table tbody td:first-child,
.technical-table thead th:first-child {
  position: sticky;
  left: 0;
  background: #394150;
  color: #fff;
  font-weight: 600;
  text-align: left;
  min-width: 220px;
  z-index: 2;
}

/* Header first cell */

.technical-table thead th:first-child {
  background: #2b3240;
  z-index: 3;
}

/* Rounded Corners */

.technical-table thead th:first-child {
  border-top-left-radius: 16px;
}

.technical-table thead th:last-child {
  border-top-right-radius: 16px;
}

/* Scrollbar */

.table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: #4b2d73;
  border-radius: 20px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: #ececec;
}

/* Mobile */

@media (max-width: 768px) {
  .technical-table {
    min-width: 750px;
  }

  .technical-table thead th {
    font-size: 15px;
    padding: 14px;
  }

  .technical-table tbody td {
    font-size: 14px;
    padding: 14px;
  }
}
