/* NGO Selection Table Styles */
.ngo-list-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
}

.ngo-list-wrapper .alert {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #fbbf24;
  background-color: #fef3c7;
  color: #92400e;
}

.ngo-selection-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ngo-selection-table thead {
  background: linear-gradient(135deg, #0133A0 0%, #01236d 100%);
  color: #ffffff;
}

.ngo-selection-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

.ngo-selection-table th.select-col {
  width: 60px;
  text-align: center;
}

.ngo-selection-table th.name-col {
  width: auto;
}

.ngo-selection-table th.website-col {
  width: 300px;
}

.ngo-selection-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s ease;
}

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

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

.ngo-selection-table td {
  padding: 12px 16px;
  vertical-align: middle;
}

.ngo-selection-table td.select-col {
  text-align: center;
}

.ngo-selection-table .ngo-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #0133A0;
}

.ngo-selection-table td.name-col {
  font-weight: 500;
  color: #1e293b;
}

.ngo-selection-table td.website-col a {
  color: #0133A0;
  text-decoration: none;
  font-size: 14px;
  word-break: break-all;
  transition: color 0.2s ease;
}

.ngo-selection-table td.website-col a:hover {
  color: #01236d;
  text-decoration: underline;
}

.ngo-selection-table td.website-col .text-muted {
  color: #64748b;
  font-style: italic;
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ngo-selection-table {
    font-size: 14px;
  }

  .ngo-selection-table th,
  .ngo-selection-table td {
    padding: 8px 12px;
  }

  .ngo-selection-table th.website-col,
  .ngo-selection-table td.website-col {
    width: 200px;
  }
}

