.elda-panel {
  max-width: 960px;
  margin: 40px auto;
  padding: 24px;
  border-radius: 16px;
  background: #faf6f0;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2933;
}

.elda-panel__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.elda-panel__course-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #e6f5ec;
}

.elda-panel__title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.elda-panel__subtitle {
  margin: 2px 0 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.elda-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.elda-stat {
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
}

.elda-stat__label {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
}

.elda-stat__value {
  font-size: 1.1rem;
  font-weight: 600;
}

.elda-panel__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.elda-task {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
}

.elda-task__status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  align-self: flex-start;
}

.elda-task__status--pending {
  background: #fff7ed;
  color: #c05621;
}

.elda-task__main {
  flex: 1;
}

.elda-task__student {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.elda-task__lesson {
  margin: 0 0 4px;
  font-size: 0.85rem;
  color: #6b7280;
}

.elda-task__date {
  margin: 0;
  font-size: 0.8rem;
  color: #9ca3af;
}

.elda-panel--guest {
  max-width: 480px;
  margin: 40px auto;
  padding: 24px;
  border-radius: 16px;
  background: #faf6f0;
  text-align: center;
}

@media (max-width: 640px) {
  .elda-panel {
    margin: 20px;
    padding: 18px;
  }

  .elda-panel__stats {
    grid-template-columns: 1fr;
  }

  .elda-task {
    flex-direction: column;
  }
}
