/* Start custom CSS for shortcode, class: .elementor-element-1ae85be *//* ===== WRAPPER ===== */
.ninja_table_wrapper {
  background: #E4F6E7; /* soft mint background */
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  font-family: 'Hind Guntur', sans-serif;
  overflow: hidden;
}

/* ===== TABLE BASE ===== */
.ninja_table_wrapper table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

/* ===== HEADER ===== */
.ninja_table_wrapper thead th {
  background: #0a5035; /* rich green */
  color: #ffb700; /* golden text */
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 12px;
  border-bottom: 3px solid #ffb700;
  font-size: 1rem;
}

/* ===== ROWS ===== */
.ninja_table_wrapper tbody tr {
  background: #ffffff;
  transition: all 0.25s ease;
}

.ninja_table_wrapper tbody tr:nth-child(even) {
  background: #f5fbf6;
}

.ninja_table_wrapper tbody tr:hover {
  background: #fff3ce;
  transform: scale(1.005);
  box-shadow: 0 3px 10px rgba(255, 183, 0, 0.2);
}

/* ===== CELLS ===== */
.ninja_table_wrapper td {
  padding: 14px 12px !important;
  color: #0a5035;
  border-bottom: 1px solid rgba(10, 80, 53, 0.1) !important;
  font-size: 0.95rem;
}

.ninja_table_wrapper tbody tr:last-child td {
  border-bottom: none !important;
}

/* ===== SEARCH BAR ===== */
.ninja_table_search_box {
  text-align: right;
  margin-bottom: 16px;
}

.ninja_table_search_box input[type="search"] {
  background: #ffffff;
  border: 1.5px solid #0a5035;
  color: #0a5035;
  border-radius: 25px;
  padding: 9px 14px;
  transition: 0.3s;
}

.ninja_table_search_box input[type="search"]:focus {
  border-color: #ffb700;
  box-shadow: 0 0 8px rgba(255, 183, 0, 0.5);
  outline: none;
}

.ninja_table_search_box input::placeholder {
  color: #666;
}

/* ===== SEARCH BUTTON ===== */
.ninja_table_search_box button {
  background: #ffb700;
  color: #083722;
  border: none;
  border-radius: 50%;
  padding: 8px 10px;
  margin-left: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.ninja_table_search_box button:hover {
  background: #ffd84e;
}

/* ===== PAGINATION ===== */
.ninja_table_wrapper .pagination {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(10, 80, 53, 0.1);
}

.ninja_table_wrapper .pagination li a,
.ninja_table_wrapper .pagination li span {
  background: #0a5035 !important;
  color: #ffb700 !important;
  border-radius: 6px !important;
  padding: 6px 12px !important;
  border: none !important;
  transition: 0.3s;
}

.ninja_table_wrapper .pagination li.active a {
  background: #ffb700 !important;
  color: #083722 !important;
  font-weight: 700;
}

.ninja_table_wrapper .pagination li a:hover {
  background: #ffcc33 !important;
  color: #083722 !important;
}

/* ===== RESPONSIVE (MOBILE FRIENDLY) ===== */
@media (max-width: 768px) {
  .ninja_table_wrapper table,
  .ninja_table_wrapper thead,
  .ninja_table_wrapper tbody,
  .ninja_table_wrapper th,
  .ninja_table_wrapper td,
  .ninja_table_wrapper tr {
    display: block;
  }

  .ninja_table_wrapper thead {
    display: none;
  }

  .ninja_table_wrapper tr {
    margin-bottom: 14px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 10px;
  }

  .ninja_table_wrapper td {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: none;
  }

  .ninja_table_wrapper td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #0a5035;
    text-transform: uppercase;
  }
}/* End custom CSS */