/* === DASHBOARD GRID === */
.ls_report_title{
	margin-bottom: 15px!important;
}
.ls-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.ls-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 0.5rem;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}

.ls-card:hover {
  transform: translateY(-3px);
}

/* Color Variants */
.total-sales { background: #17a2b8; }
.total-orders { background: #28a745; }
.refunded { background: #dc3545; }
.avg-order { background: #ffc107; color: #212529; }

/* Icon Styling */
.ls-icon {
	background: rgba(255,255,255,0.15);
	border-radius: 50%;
	width: 45px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	display: block;
	display: inline-block;
}
.ls-icon i{
	font-size: 22px;
	line-height: 45px;	
}
.avg-order .ls-icon {
  background: rgba(0,0,0,0.1);
}

/* Text Styling */
.ls-card-content h3 {
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  opacity: 0.85;
  color: #fff;
}
.avg-order .ls-card-content h3{
	color: #343a40;
}

.ls-card-content p {
  font-size: 24px;
  font-weight: bold;
  margin: 4px 0 0;
}


/* === SECTION TITLE === */
.ls-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 20px;
  border-left: 4px solid #3c8dbc;
  padding-left: 12px;
}

/* === TABLE === */
.ls-orders-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.ls-orders-table thead {
  background-color: #f4f6f9;
}

.ls-orders-table th,
.ls-orders-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}

.ls-orders-table th {
  font-size: 12px;
  font-weight: 600;
  color: #495057;
  text-transform: uppercase;
}

.ls-orders-table td {
  font-size: 14px;
  color: #333;
}

.ls-orders-table tbody tr:hover {
  background-color: #f1f1f1;
}

/* === NO ORDERS === */
.ls-no-orders {
  font-style: italic;
  color: #888;
  padding: 20px;
}

/* === PAGINATION === */
.ls-pagination {
  margin-top: 20px;
  text-align: center;
}

.ls-pagination a {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 3px;
  border: 1px solid #ced4da;
  background-color: #fff;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.ls-pagination a:hover {
  background-color: #007bff;
  color: #fff;
}

.ls-pagination .current-page {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.ls-pagination .ls-prev,
.ls-pagination .ls-next {
  font-weight: bold;
}

/** Message **/

#api-key-message{
	margin-top: 10px; 
	font-weight: 700;
}