
.eze-dashboard {
  font-family: system-ui, -apple-system, sans-serif;
 
  min-height: 100vh;
}

.eze-course-hero {
  background: #ffffff;
  padding: 60px 20px;
}

.eze-course-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}


/* Course Details */
.eze-course-details {
  padding: 24px;
  max-width: 1100px;
}

.eze-course-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.eze-course-header h1 {
  margin: 0 0 6px;
}

.eze-muted {
  color: #6b7280;
}

.eze-progress-wrap {
  min-width: 220px;
}

.eze-progress-bar {
  background: #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  height: 10px;
  margin-bottom: 6px;
}

.eze-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}

/* Curriculum */
.eze-curriculum h2 {
  margin-bottom: 16px;
}

.eze-curriculum-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eze-tab-panel .eze-curriculum-item.details {
    
    display: grid;
}

.eze-dashboard .eze-curriculum-item.details{
    display: flex;
}

.eze-curriculum-item {
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 12px;
  background: #fff;
}

.eze-curriculum-item.locked {
  opacity: 0.5;
}

.eze-curriculum-item.completed {
  border-color: #16a34a;
  background: #f0fdf4;
}

.eze-curriculum-item.current {
  border-color: #2563eb;
  background: #eff6ff;
}

.eze-status-icon .unselected {
  background: #848282;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  i {
      margin: 9px 9px !important;
  }
}



.eze-item-left {
  display: flex;
  gap: 14px;
  align-items: center;
}

.eze-item-index {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

.eze-status {
  font-size: 12px;
  font-weight: 600;
}

.eze-status.done {
  color: #16a34a;
}

.eze-status.locked {
  color: #9ca3af;
}

/* Buttons */
.eze-btn-secondary {
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid #2563eb;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.eze-btn-secondary:hover {
  background: #2563eb;
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .eze-course-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Status Icon */
.eze-status-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
}

.eze-status-icon .icon {
  font-size: 16px;
  font-weight: bold;
}

.eze-status-icon .checkbox {
    border-radius: 5px;
}

.eze-status-icon .complete {
  background: #16a34a;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eze-status-icon .current {
  background: #3c88c3;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  img {
      margin: 9px 10px !important;
  }
}


.eze-curriculum-item.completed .eze-status-icon {
  background:  #16a34a;
  color: #fff;
  border-radius: 50%;
  img {
      margin: 9px 10px !important;
  }
}

.eze-status-icon .pending {
  border: 2px solid #d1d5db;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

/* Meta line */
.eze-item-meta {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}

.eze-score {
  font-weight: 600;
  color: #16a34a;
}

/* Buttons */
.eze-btn-primary {
  padding: 6px 14px;
  border-radius: 6px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.eze-btn-primary:hover {
  background: #1d4ed8;
}




/* Layout */
.eze-layout {
  display: flex;
}

/* Sidebar */
.eze-sidebar {
  width: 260px;
  background: #fff;
  border-right: 1px solid #e5e7eb;
  padding: 1rem;
  min-height: 90vh;
}

.eze-sidebar nav a {
  display: block;
  padding: .75rem;
  border-radius: 8px;
  color: #475569;
  text-decoration: none;
}

.eze-sidebar nav a.active {
  background: #eef2ff;
  color: #4338ca;
  font-weight: 600;
}

/* Main */
.eze-main {
  flex: 1;
  padding: 1.5rem;
}

/* Toolbar */
.eze-toolbar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.eze-search {
  flex: 1;
  padding: .6rem .8rem;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
}

/* Courses */
.eze-courses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.eze-course {
  display: flex;
  gap: 1rem;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  transition: box-shadow .15s ease;
  border: 1px solid #c0c0c0;
}

.eze-course:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  border: 1px solid blue;
  cursor: pointer
}

.eze-coursesd img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
}

/* Mobile */
.eze-header {
  display: none;
}

@media (max-width: 1024px) {
  .eze-sidebar {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    z-index: 1000;
    transition: left .3s ease;
  }

  .eze-sidebar.open {
    left: 0;
  }

  .eze-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
  }
}


#my-account .woocommerce {
    display: flex;
    column-gap: 30px;
    border-top: 1px solid #e5e7eb
}

nav.woocommerce-MyAccount-navigation {
    width: 300px;
    padding: 10px;
    border-right: 1px solid #e5e7eb
}

.woocommerce-MyAccount-content {
    width: 100%;
    padding: 10px 0;
}

.woocommerce-MyAccount-navigation {
    a {
        display: block;
        padding: .75rem;
        border-radius: 8px;
        color: #475569;
        text-decoration: none;
    }
    .is-active a {
        background: #eef2ff;
        color: #4338ca;
        font-weight: 600;
    }
}

.wc-block-components-checkout-place-order-button__text {
    background-color: #306dd6;
    border-radius: 20px;
    padding: 10px 30px;
    color: #fff;
}

.wc-block-components-checkout-place-order-button__text:hover {
    background-color: #000;
}

.woocommerce .cart img {
    width: 80px;
}
