/* ══════════════════════════════════════════════════════
   PROJECT 4: CAREER SHIFTERS ACADEMY (CSS STYLES)
══════════════════════════════════════════════════════ */

:root {
  --p4-green: #15803d;
  --p4-gold: #f5c800;
  --p4-dark-bg: rgba(10, 10, 10, 0.85);
  --p4-glass-border: rgba(245, 200, 0, 0.15);
  --p4-text-mute: rgba(255, 255, 255, 0.6);
}

/* Background & Glassmorphic Container */
.p4-wrapper {
  position: relative;
  background: radial-gradient(circle at center, rgba(15, 15, 15, 0.95), rgba(5, 5, 5, 0.98));
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  border-radius: 20px;
  padding: 40px 24px;
  margin-top: 30px;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.p4-wrapper::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 200, 0, 0.05) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.p4-wrapper::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 200, 0, 0.03) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.p4-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header & Profile bar */
.p4-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--p4-glass-border);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.p4-dash-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p4-dash-logo img {
  height: 40px;
  width: auto;
}

.p4-dash-logo span {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--p4-gold);
  letter-spacing: 1px;
}

.p4-user-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.p4-user-info {
  text-align: right;
}

.p4-user-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.p4-user-info p {
  font-size: 0.75rem;
  color: var(--p4-text-mute);
  margin: 2px 0 0 0;
}

.p4-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--p4-gold);
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--p4-gold);
  font-size: 0.9rem;
}

/* Hero Section */
.p4-hero-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .p4-hero-grid {
    grid-template-columns: 1fr;
  }
}

.p4-hero-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--p4-glass-border);
  border-radius: 16px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.p4-hero-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(245, 200, 0, 0.1);
  color: var(--p4-gold);
  border: 1px solid rgba(245, 200, 0, 0.2);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.p4-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.p4-hero-sub {
  font-size: 1.1rem;
  color: var(--p4-gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.p4-hero-desc {
  font-size: 0.9rem;
  color: var(--p4-text-mute);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 550px;
}

.p4-hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Progress Tracker Card */
.p4-progress-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--p4-glass-border);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.p4-progress-circle-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 15px;
}

.p4-progress-svg {
  width: 130px;
  height: 130px;
  transform: rotate(-90deg);
}

.p4-progress-bg-circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 10;
}

.p4-progress-fill-circle {
  fill: none;
  stroke: var(--p4-gold);
  stroke-width: 10;
  stroke-dasharray: 377;
  stroke-dashoffset: 377;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease-in-out;
}

.p4-progress-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
}

.p4-progress-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.p4-progress-status {
  font-size: 0.82rem;
  color: var(--p4-text-mute);
}

/* Timeline/Journey Steps */
.p4-section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 3px solid var(--p4-gold);
  padding-left: 12px;
}

.p4-timeline-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 20px;
  margin-bottom: 40px;
  overflow-x: auto;
}

.p4-timeline-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-width: 900px;
  position: relative;
  padding: 10px 0;
}

.p4-timeline-inner::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
}

.p4-timeline-progress-line {
  position: absolute;
  top: 30px;
  left: 5%;
  width: 0%;
  height: 2px;
  background: var(--p4-gold);
  z-index: 1;
  transition: width 0.6s ease-in-out;
}

.p4-timeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 10%;
  cursor: pointer;
}

.p4-step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.p4-timeline-step:hover .p4-step-circle {
  border-color: var(--p4-gold);
  box-shadow: 0 0 10px rgba(245, 200, 0, 0.2);
}

.p4-step-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--p4-text-mute);
  transition: color 0.3s;
}

/* Timeline Step States */
.p4-timeline-step.completed .p4-step-circle {
  background: var(--p4-green);
  border-color: var(--p4-green);
  color: #fff;
}
.p4-timeline-step.completed .p4-step-title {
  color: #fff;
}

.p4-timeline-step.active .p4-step-circle {
  background: #000;
  border-color: var(--p4-gold);
  color: var(--p4-gold);
  box-shadow: 0 0 15px rgba(245, 200, 0, 0.3);
}
.p4-timeline-step.active .p4-step-title {
  color: var(--p4-gold);
}

/* About info row */
.p4-about-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px 30px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 600px) {
  .p4-about-box {
    flex-direction: column;
    text-align: center;
  }
}

.p4-about-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(245, 200, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--p4-gold);
  flex-shrink: 0;
}

.p4-about-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.p4-about-text p {
  font-size: 0.88rem;
  color: var(--p4-text-mute);
  line-height: 1.6;
  margin: 0;
}

/* Quick Actions Grid */
.p4-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 45px;
}

.p4-action-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.p4-action-btn:hover {
  background: rgba(245, 200, 0, 0.03);
  border-color: var(--p4-gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.p4-action-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.p4-action-btn:hover .p4-action-icon {
  background: rgba(245, 200, 0, 0.1);
  color: var(--p4-gold);
}

.p4-action-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.p4-action-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6b7280; /* grey default */
  margin-top: 4px;
}

/* Action button status indicator colors */
.p4-status-pending { background: #6b7280; }
.p4-status-inprogress { background: var(--p4-gold); }
.p4-status-completed { background: var(--p4-green); }
.p4-status-actionrequired { background: #dc2626; }
.p4-status-mentorreview { background: #2563eb; }

/* Dashboard Summary Cards */
.p4-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.p4-summary-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.p4-sum-icon {
  font-size: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.p4-sum-info h6 {
  font-size: 0.78rem;
  color: var(--p4-text-mute);
  text-transform: uppercase;
  margin: 0 0 4px 0;
  letter-spacing: 0.5px;
}

.p4-sum-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.p4-sum-sub {
  font-size: 0.75rem;
  color: var(--p4-text-mute);
}

/* 7 Analysis Items Section */
.p4-analysis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.p4-analysis-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s;
  display: flex;
  gap: 16px;
}

.p4-analysis-card:hover {
  border-color: var(--p4-gold);
  background: rgba(245, 200, 0, 0.02);
  transform: translateY(-2px);
}

.p4-analysis-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 200, 0, 0.1);
  border: 1px solid var(--p4-gold);
  color: var(--p4-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.p4-analysis-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.p4-analysis-content p {
  font-size: 0.82rem;
  color: var(--p4-text-mute);
  line-height: 1.5;
  margin: 0;
}

/* Interactive Popups / Modals */
.p4-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 40px 20px;
}

.p4-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.p4-modal-content {
  background: #0d0d0d;
  border: 1px solid var(--p4-gold);
  border-radius: 20px;
  width: 100%;
  max-width: 650px;
  max-height: none;
  overflow: visible;
  margin: 40px auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(245, 200, 0, 0.1);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.p4-modal-overlay.open .p4-modal-content {
  transform: scale(1);
}

.p4-modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.p4-modal-close-btn:hover {
  background: var(--p4-gold);
  color: #000;
}

.p4-modal-body {
  padding: 40px;
}

.p4-modal-header {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
}

.p4-modal-step-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--p4-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.p4-modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.p4-modal-subtitle {
  font-size: 0.85rem;
  color: var(--p4-text-mute);
  margin: 4px 0 0 0;
}

.p4-modal-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--p4-glass-border);
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: block;
}

/* Custom form elements */
.p4-form-group {
  margin-bottom: 20px;
}

.p4-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.p4-input, .p4-select, .p4-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s;
}

.p4-input:focus, .p4-select:focus, .p4-textarea:focus {
  border-color: var(--p4-gold);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  box-shadow: 0 0 8px rgba(245, 200, 0, 0.15);
}

.p4-textarea {
  resize: vertical;
  min-height: 90px;
}

/* Grid of selection list items */
.p4-items-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-height: none;
  overflow: visible;
  padding-right: 5px;
}

@media (max-width: 600px) {
  .p4-items-list {
    grid-template-columns: 1fr;
  }
}

.p4-list-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.p4-list-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--p4-gold);
}

.p4-list-item.selected {
  background: rgba(245, 200, 0, 0.05);
  border-color: var(--p4-gold);
}

.p4-list-item-content {
  display: flex;
  flex-direction: column;
}

.p4-list-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.p4-list-item-desc {
  font-size: 0.78rem;
  color: var(--p4-text-mute);
  margin-top: 4px;
}

.p4-list-item-badge {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--p4-gold);
  background: rgba(245, 200, 0, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Custom checkbox / radio styles */
.p4-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}

.p4-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.p4-checkbox-item:hover {
  border-color: var(--p4-gold);
  background: rgba(255, 255, 255, 0.04);
}

.p4-checkbox-item input {
  accent-color: var(--p4-gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.p4-checkbox-label {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
}

/* Certificate Preview Design */
.p4-certificate-frame {
  background: #fafaf7;
  border: 15px double #b5892b;
  padding: 40px;
  color: #222;
  font-family: 'Playfair Display', serif;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  margin: 15px 0 25px 0;
}

.p4-cert-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: #b5892b;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.p4-cert-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.p4-cert-sub {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 25px;
  font-style: italic;
}

.p4-cert-recipient {
  font-size: 1.8rem;
  font-weight: 700;
  color: #b5892b;
  border-bottom: 2px solid #ddd;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 20px;
  min-width: 250px;
}

.p4-cert-body {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 30px auto;
  font-family: 'Outfit', sans-serif;
}

.p4-cert-footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
}

.p4-cert-signature {
  border-top: 1px solid #aaa;
  padding-top: 6px;
  width: 140px;
}

.p4-cert-gold-seal {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, #e5b700, #b5892b);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.p4-cert-gold-seal::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 1px dashed #fff;
  border-radius: 50%;
}

.p4-cert-locked {
  text-align: center;
  padding: 60px 40px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
}

.p4-cert-lock-icon {
  font-size: 3rem;
  color: var(--p4-gold);
  margin-bottom: 20px;
}

/* File Upload drag/drop area */
.p4-upload-dragzone {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 20px;
}

.p4-upload-dragzone:hover {
  border-color: var(--p4-gold);
  background: rgba(245, 200, 0, 0.02);
}

.p4-upload-icon {
  font-size: 2.2rem;
  color: var(--p4-gold);
  margin-bottom: 12px;
}

.p4-upload-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.p4-upload-sub {
  font-size: 0.78rem;
  color: var(--p4-text-mute);
}

/* Rating Stars */
.p4-rating-container {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.p4-star {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: color 0.2s;
}

.p4-star.selected, .p4-star:hover {
  color: var(--p4-gold);
}

/* Calendar grid mockup */
.p4-calendar-wrap {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.01);
  margin-bottom: 16px;
}

.p4-calendar-month {
  text-align: center;
  font-weight: 700;
  color: var(--p4-gold);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.p4-calendar-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--p4-text-mute);
  margin-bottom: 8px;
}

.p4-calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}

.p4-cal-day {
  font-size: 0.8rem;
  padding: 8px 0;
  color: #aaa;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}

.p4-cal-day:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.p4-cal-day.active-workshop {
  background: rgba(245, 200, 0, 0.15);
  color: var(--p4-gold);
  font-weight: 700;
  border: 1px solid var(--p4-gold);
}

.p4-cal-day.selected {
  background: var(--p4-gold) !important;
  color: #000 !important;
  font-weight: 700;
}

.p4-cal-day.muted {
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

/* Enrolled courses and learning status list */
.p4-progress-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p4-prog-item {
  display: flex;
  flex-direction: column;
}

.p4-prog-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.p4-prog-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.p4-prog-bar-fill {
  height: 100%;
  background: var(--p4-gold);
  border-radius: 10px;
  width: 0%;
  transition: width 0.6s ease-in-out;
}
