.cl-gradient-header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 40px; color: white; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.cl-gradient-header h1 { margin: 0; font-size: 32px; font-weight: 600; color: white; }
.cl-gradient-header p { margin: 8px 0 0; opacity: 0.95; font-size: 16px; }
.cl-content-wrapper { background: #f9fafb; padding: 30px; min-height: calc(100vh - 200px); }
.cl-tabs { display: flex; gap: 10px; margin-bottom: 30px; border-bottom: 2px solid #e5e7eb; }
.cl-tab { padding: 12px 24px; background: white; border: none; cursor: pointer; font-size: 15px; font-weight: 500; color: #6b7280; border-radius: 8px 8px 0 0; transition: all 0.3s; text-decoration: none; }
.cl-tab:hover { color: #667eea; background: #f3f4f6; }
.cl-tab.active { color: #667eea; background: white; border-bottom: 3px solid #667eea; }
.cl-card { background: white; border-radius: 12px; padding: 30px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.cl-upload-zone { border: 2px dashed #d1d5db; border-radius: 12px; padding: 40px; text-align: center; background: #f9fafb; transition: all 0.3s; }
.cl-upload-zone:hover { border-color: #667eea; background: #f3f4f6; }
.cl-btn-choose { display: inline-block; padding: 12px 32px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border-radius: 8px; cursor: pointer; font-weight: 500; transition: transform 0.2s; }
.cl-btn-choose:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(102,126,234,0.4); }
.cl-btn-upload { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important; border: none !important; padding: 12px 32px !important; border-radius: 8px !important; font-weight: 500 !important; transition: transform 0.2s !important; }
.cl-btn-upload:hover { transform: translateY(-2px) !important; box-shadow: 0 4px 12px rgba(102,126,234,0.4) !important; }
.cl-file-info { margin-top: 16px; color: #6b7280; font-size: 14px; }
.cl-file-selected { color: #667eea; font-weight: 500; }
.cl-alert { padding: 16px 20px; border-radius: 8px; margin-bottom: 20px; font-weight: 500; }
.cl-alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.cl-alert-error { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }
.cl-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.cl-table thead { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; }
.cl-table th { padding: 16px; text-align: left; font-weight: 600; }
.cl-table td { padding: 16px; border-bottom: 1px solid #e5e7eb; }
.cl-table tbody tr { background: white; transition: background 0.2s; }
.cl-table tbody tr:hover { background: #f9fafb; }
.cl-empty { text-align: center; padding: 40px; color: #9ca3af; }
.cl-status-badge { display: inline-block; padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.cl-status-success { background: #d1fae5; color: #065f46; }
.cl-status-failed { background: #fee2e2; color: #991b1b; }
.cl-error-msg { color: #991b1b; font-size: 13px; margin-top: 4px; }
.notice, .updated, .error, .update-nag, div.notice, div.updated, div.error { display: none !important; }
#wpbody-content .notice, #wpbody-content .updated, #wpbody-content .error { display: none !important; }
.wrap > .notice, .wrap > .updated, .wrap > .error { display: none !important; }


/* Progress Bar Container */
.cl-progress{
  --value: 100%;        /* Set your progress percentage here */
  --duration: .8s;
  --height: 22px;
  --bg: #e7e9ef;
  --track-radius: 12px;
  --fill-color: linear-gradient(90deg, #4f9cff, #4ad0c8);

  position: relative;
  height: var(--height);
  background: var(--bg);
  border-radius: var(--track-radius);
  overflow: hidden;
  margin-bottom: 20px;
  display: none;
}

/* Progress Fill */
.cl-progress-fill{
  height: 100%;
  width: 100%;
  border-radius: calc(var(--track-radius) - 2px);
  background-image: var(--fill-color);
  animation: fill var(--duration) ease-out forwards;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10px;
  color: white;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Moving stripes */
.cl-progress-fill::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg,
      rgba(255,255,255,0.25) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255,255,255,0.25) 50%,
      rgba(255,255,255,0.25) 75%,
      transparent 75%,
      transparent
    );
  background-size: 24px 24px;
  animation: stripes 1s linear infinite;
  pointer-events: none;
}

/* Glow effect */
.cl-progress-fill::after{
  content: "";
  position: absolute;
  top: -6px;
  right: -18px;
  width: 36px;
  height: calc(var(--height) + 12px);
  background: radial-gradient(circle, rgba(255,255,255,0.8), transparent 60%);
  filter: blur(12px);
  pointer-events: none;
}

/* Animations */
@keyframes fill{
  from{ width: 0%; }
  to{ width: var(--value); }
}

@keyframes stripes{
  from{ background-position: 0 0; }
  to{ background-position: 48px 0; }
}