
/* Subscription & Plans Styles */

.lk-sub-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lk-sub-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lk-sub-separator {
  height: 1px;
  background: var(--border-color, #e0e0e0);
  margin: 4px 0;
}

.badge-plan {
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
}

.badge-plan-free {
  background: #f0f0f0;
  color: #666;
}

.badge-plan-basic {
  background: #e3f2fd;
  color: #1976d2;
}

.badge-plan-pro {
  background: #fff8e1;
  color: #f57f17;
  border: 1px solid #ffd54f;
}

.lk-sub-limits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.limit-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.limit-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
}

.progress-bar {
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: #4caf50;
  transition: width 0.3s ease;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .badge-plan-free {
    background: #333;
    color: #aaa;
  }
  .badge-plan-basic {
    background: #1565c0;
    color: #fff;
  }
  .badge-plan-pro {
    background: #fbc02d;
    color: #000;
    border: none;
  }
  .progress-bar {
    background: #444;
  }
}
