.table-title {
  margin: 0 0 15px 0;
  font-size: 15px;
  font-weight: 600;
  color: #0A2540;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(10, 37, 64, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-wrapper {
  overflow-x: auto;
  background: #F0F8FF;
  border-radius: 8px;
  margin-bottom: 10px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 600px;
}

.data-table thead {
  color: white;
  position: sticky;
  top: 0;
  z-index: 10;
}

.data-table thead th {
  padding: 12px 15px;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #0A2540;
  color: #0A2540;
}

.data-table tbody tr {
  background: #ffffff;
  transition: all 0.2s ease;
  cursor: pointer;
}

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

.data-table tbody tr:hover {
  background: #BDE3EE;
}

.data-table tbody td {
  padding: 10px 15px;
  color: #1E293B;
  vertical-align: middle;
  transition: padding 0.2s ease;
}

.data-table tbody tr:hover td:first-child {
  padding-left: 12px;
}

.data-table tbody td:first-child {
  font-weight: 500;
  color: #0A2540;
}

.data-table tbody td:last-child {
  text-align: right;
  font-weight: 600;
  color: #1A3A52;
}

.nation-image {
  height: 20px;
  width: 30px;
  border-radius: 4px;
  margin-right: 5px;
  vertical-align: middle;
}
.nation-table-cell{
  display: flex;
  align-items: center;
  gap: 5px;
}

.table-info {
  margin-top: 8px;
  padding: 8px 12px;
  font-size: 11px;
  color: #64748B;
  text-align: right;
  font-weight: 500;
  background: rgba(184, 230, 245, 0.15);
  border-radius: 6px;
  border: 1px solid rgba(10, 37, 64, 0.1);
}

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

.table-wrapper::-webkit-scrollbar-track {
  background: rgba(10, 37, 64, 0.05);
  border-radius: 3px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(10, 37, 64, 0.3);
  border-radius: 3px;
  transition: background 0.2s;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(10, 37, 64, 0.5);
}

.table-interpretation {
  font-size: 13px;
  color: #64748B;
  font-weight: 500;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .table-title {
    font-size: 13px;
    margin: 0 0 10px 0;
    padding-bottom: 8px;
  }

  .data-table {
    font-size: 11px;
    min-width: 400px;
  }

  .data-table thead th {
    padding: 8px 10px;
    font-size: 10px;
  }

  .data-table tbody td {
    padding: 8px 10px;
  }

  .table-info {
    font-size: 10px;
    padding: 6px 10px;
  }

  .table-interpretation {
    font-size: 12px;
  }
}