 .student-header {
  background: #1f4e6e !important;
  border-radius: 0px 0px 18px 18px !important;
  color: #fff !important;
}

.exam-card {
  background: #fdeed1 !important;
  border-radius: 18px !important;
}

.subject-box {
  height: 80px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}
.subject-box img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-radius: 8px; /* optional */
}

.subject-label {
  font-size: 13px;
  margin-top: 5px;
}


.children-page {
  background: #ffffff;
  min-height: 100vh;
  padding: 16px;
}

.children-header h1 {
  font-size: 22px;
  font-weight: 600;
}

.children-header p {
  color: #6c757d;
  margin-top: 4px;
}

/* Horizontal scroll */
.children-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 20px 4px 40px;
}

/* Card */
.child-card {
    min-width: 192px;
    height: 142px;
    background: #3e6c8b;
    border-radius: 22px;
    padding-top: 20px;
    position: relative;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

/* Avatar */
.child-avatar {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 50%;
    padding: 3px;
}

.child-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Info */
.child-info {
    text-align: center;
    color: #ffffff;
    margin-top: 10px;
}

.child-info h4 {
  font-size: 11px;
  margin: 0;
}

.child-info p {
    font-size: 9px;
    opacity: 0.9;
    margin-top: 6px;
}

/* Floating arrow */
.arrow-btn {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

