/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 29 2025 | 06:50:53 */
/* Wrapper with scroll */
.cte-main-table {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow-x: auto;        /* ✅ horizontal scroll */
  -webkit-overflow-scrolling: touch; /* smooth scroll on mobile */
}

/* Table Styling */
.cte-main-table table {
  width: 100%;
  min-width: 600px; /* ✅ ensure table doesn’t shrink too much */
  border-collapse: separate;
  border-spacing: 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

/* Header */
.cte-main-table th {
  background: #DB221A;
  color: #fff;
  padding: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
	text-align: left;
}

.cte-main-table th:first-child {
  text-align: left;
  background: #c01c14; /* darker shade for first column */
}

/* Rows */
.cte-main-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
	text-align: left;
}

.cte-main-table tr:last-child td {
  border-bottom: none;
}

/* First column styling */
.cte-main-table td:first-child {
  text-align: left;
  font-weight: 500;
  background: #fafafa;
  color: #333;
}

/* Hover effect */
.cte-main-table tbody tr:hover td {
  background: #fff5f5;
  transition: background 0.3s ease;
}

/* Icons */
.cte-main-table i.fa-check-square {
  color: #DB221A;
  font-size: 18px;
}

.cte-main-table i.fa-window-close {
  color: #999;
  font-size: 18px;
}

/* Responsive font scaling */
@media (max-width: 768px) {
  .cte-main-table table {
    font-size: 14px;
    min-width: 500px; /* ✅ ensures scroll instead of breaking */
  }
  .cte-main-table th,
  .cte-main-table td {
    padding: 10px;
  }
}
