.sales-contact-table {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.responsive-table thead {
  background: #005ca7;
  color: #fff;
}

.responsive-table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.responsive-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.3s ease;
}

.responsive-table tbody tr:hover {
  background-color: #f8fafc;
}

.responsive-table tbody tr:last-child {
  border-bottom: none;
}

.responsive-table td {
  padding: 12px 15px;
  font-size: 14px;
  color: #374151;
}

.responsive-table td:first-child {
  font-weight: 600;
  color: #667eea;
}

.responsive-table a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.responsive-table a:hover {
  color: #764ba2;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sales-contact-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .responsive-table {
    min-width: 600px;
  }

  .responsive-table th,
  .responsive-table td {
    padding: 10px;
    font-size: 13px;
  }

  .responsive-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
  }
}

@media (max-width: 480px) {
  .responsive-table th,
  .responsive-table td {
    padding: 8px;
    font-size: 12px;
  }

  .sales-contact-table {
    margin: 15px 0;
  }
}
