/* Lash Insiders MLM - Customer Dashboard Styles */

:root {
  --primary-color: #0073aa;
  --secondary-color: #d4a373;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f8f7f5;
  --border-color: #e5ddd3;
  --success-color: #4caf50;
  --info-color: #1565c0;
}

/* Main Dashboard Container */
.lash-customer-dashboard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.lash-dashboard-header {
  margin-bottom: 30px;
}

.lash-dashboard-header h1 {
  color: var(--text-dark);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.lash-dashboard-header p {
  color: var(--text-light);
  margin: 0;
  font-size: 14px;
}

/* Tab Navigation */
.lash-tabs-container {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
}

.lash-tab-link {
  padding: 15px 25px;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s ease;
}

.lash-tab-link:hover {
  color: var(--primary-color);
}

.lash-tab-link.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  font-weight: 700;
}

/* Tab Content */
.lash-tab-content {
  display: none;
}

.lash-tab-content.active {
  display: block;
}

/* Cards Grid */
.lash-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

/* Card */
.lash-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.lash-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.lash-card-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.lash-card-title {
  font-size: 14px;
  color: var(--text-light);
  margin: 0 0 12px 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lash-card-value {
  font-size: 32px;
  color: var(--text-dark);
  margin: 0;
  font-weight: 700;
}

.lash-card-subtitle {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 8px;
}

/* Profile Section */
.lash-profile-section {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}

.lash-profile-section h3 {
  color: var(--text-dark);
  font-size: 18px;
  margin: 0 0 20px 0;
  font-weight: 700;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 15px;
}

.lash-info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.lash-info-row:last-child {
  border-bottom: none;
}

.lash-info-label {
  font-weight: 600;
  color: var(--text-dark);
  min-width: 150px;
}

.lash-info-value {
  color: var(--text-light);
  word-break: break-word;
}

/* Sponsor Information Card */
.lash-sponsor-card {
  background: #f0f8f4;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.lash-sponsor-card h4 {
  color: #1b5e20;
  margin: 0 0 15px 0;
  font-weight: 700;
  font-size: 14px;
}

.lash-sponsor-info {
  display: grid;
  gap: 10px;
}

.lash-sponsor-info-row {
  display: flex;
  justify-content: space-between;
  color: #2e7d32;
  font-size: 13px;
}

.lash-sponsor-info-label {
  font-weight: 600;
}

/* Table Styles */
.lash-table-container {
  overflow-x: auto;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 20px;
}

.lash-table {
  width: 100%;
  border-collapse: collapse;
}

.lash-table thead {
  background: var(--bg-light);
  border-bottom: 2px solid var(--border-color);
}

.lash-table th {
  padding: 15px;
  text-align: left;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lash-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-light);
  font-size: 13px;
}

.lash-table tr:hover {
  background: #fafafa;
}

.lash-table tr:last-child td {
  border-bottom: none;
}

/* Badge Styles */
.lash-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lash-badge-success {
  background: #e8f5e9;
  color: #2e7d32;
}

.lash-badge-info {
  background: #e3f2fd;
  color: var(--info-color);
}

.lash-badge-warning {
  background: #fff3e0;
  color: #e65100;
}

/* Empty State */
.lash-empty-state {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-light);
}

.lash-empty-state-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.lash-empty-state p {
  margin: 0;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .lash-cards-grid {
    grid-template-columns: 1fr;
  }

  .lash-info-row {
    flex-direction: column;
    gap: 8px;
  }

  .lash-table {
    font-size: 12px;
  }

  .lash-table th,
  .lash-table td {
    padding: 10px;
  }

  .lash-tabs-container {
    flex-wrap: wrap;
    gap: 5px;
  }

  .lash-tab-link {
    padding: 12px 15px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .lash-customer-dashboard {
    padding: 10px;
  }

  .lash-dashboard-header h1 {
    font-size: 22px;
  }

  .lash-card {
    padding: 15px;
  }

  .lash-profile-section {
    padding: 15px;
  }

  .lash-card-value {
    font-size: 24px;
  }
}
