.modern-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  background: white;
}

.modern-table thead {
  background: linear-gradient(135deg, #F3F9FF, #F4F7FF);
  text-align: left;
}

.modern-table th, .modern-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #e5f3ff;
  font-size: 14px;
  transition: background 0.3s ease, color 0.3s ease;
}

.modern-table th {
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.modern-table tr:hover td {
  animation: rowFade 0.4s ease forwards;
}

@keyframes rowFade {
  0% {
    background-color: #F3F9FF;
  }
  100% {
    background-color: #F4F7FF;
  }
}

.modern-table tbody tr:nth-child(even) td {
  background-color: #F3F9FF;
}

.modern-table tbody tr:nth-child(odd) td {
  background-color: #EBFFF5;
}

.modern-table tbody tr:last-child td {
  border-bottom: none;
}

.modern-table td.highlight {
  font-weight: 600;
  color: #2563eb;
}

/* Responsive fix for Tilda mobile view */
@media (max-width: 768px) {
  .modern-table th, .modern-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
}