/* Responsive wrapper */

/* Table styling */
.kf table {
  border-collapse: collapse;
  font-size: 15px;
  text-align: left;
  width: 100% !important;
  border: 1px solid #ccc;
}

/* Table header */
.kf table thead th {
  background-color: #1a3e8b;
  color: #ffffff;
  padding: 12px;
  font-weight: 600;
  border: 1px solid #ddd;
}

/* Table cells */
.kf table td {
  padding: 12px;
  border: 1px solid #ccc;
  vertical-align: top;
}

/* Alternating row colors */
.kf table tbody tr:nth-child(odd) {
  background-color: #eaf0f9;
}

.kf table tbody tr:nth-child(even) {
  background-color: #f8f8f8;
}

/* First column bold and fixed width */
.kf table td:first-child {
  font-weight: 600;
  width: 250px;
}

/* Optional: Custom scrollbars (WebKit) */
.kf::-webkit-scrollbar {
  height: 6px;
}
.kf::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 5px;
}
