@import url('./main.css');

/* Panel Uczestnika */
.student-panel h1 {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 17px;
  letter-spacing: 1px;
}
.status-bar {
  margin-bottom: 17px;
  padding: 10px 18px;
}
.status-indicator {
  background: var(--primary);
  box-shadow: 0 0 4px 1px #2b59c38a;
}
.status-text {
  color: #222;
}
.content-display {
  background: var(--accent);
  border-radius: var(--card-radius);
  margin-top: 14px;
  padding: 24px 30px;
  min-height: 160px;
  box-shadow: var(--shadow);
}
#currentPage {
  background: #fff;
  border-radius: 8px;
  padding: 8px 13px;
  min-height: 60px;
  box-shadow: 0 1px 2px #dbeafe66;
  font-size: 1.08rem;
}

/* Animacja ładowania treści */
#currentPage {
  animation: fadeIn .45s linear;
}

@media (max-width: 900px) {
  .content-display {
    padding: 10px;
    min-height: 90px;
  }
}
