.lsc-page {
  padding: 24px 28px;
  background: #f3f4f6;
  min-height: 100%;
}

.lsc-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 16px;
}

.lsc-page-header h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #1f2933;
}

.lsc-page-header p {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 14px;
}

.lsc-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.lsc-u-text-muted {
  color: #6b7280;
}

.lsc-stat-value {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-top: 2px;
}

.lsc-stat-hint {
  font-size: 11px;
  margin-top: 2px;
  color: #10b981;
}

/* Pagination core (desktop + mobile) */
.lsc-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  min-width: 0;
  flex-wrap: wrap;
}

.lsc-page-info {
  font-size: 13px;
  color: #4b5563;
  white-space: nowrap;
}

.lsc-page-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.lsc-page-btn {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
  color: #374151;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}

.lsc-page-btn:hover {
  background: #111827;
  color: #f9fafb;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
  transform: translateY(-1px);
}

.lsc-page-btn-active {
  background: #111827;
  color: #f9fafb;
  border-color: #111827;
  cursor: default;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.3);
}

.lsc-page-btn-active:hover {
  background: #111827;
  color: #f9fafb;
  transform: none;
}

.lsc-page-btn-disabled {
  background: #f3f4f6;
  color: #9ca3af;
  border-color: #e5e7eb;
  cursor: not-allowed;
  box-shadow: none;
}

.lsc-page-btn-disabled:hover {
  background: #f3f4f6;
  color: #9ca3af;
  transform: none;
}

.lsc-page-ellipsis {
  font-size: 13px;
  color: #9ca3af;
  padding: 0 4px;
}

@media (max-width: 640px) {
  .lsc-pagination {
    flex-direction: column;
    align-items: stretch;
  }
  .lsc-page-info {
    text-align: center;
    width: 100%;
  }
  .lsc-page-buttons {
    justify-content: center;
  }
}
