/* ==== GRADE CALCULATOR ==== */

.modul-note-wrapper {
  width: 100%;
  margin-top: 4px;
  display: flex;
  justify-content: center;
}

.modul-note-input {
  width: 72px;
  padding: 3px 6px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.9);
  color: #1f2937;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.modul-note-input::placeholder {
  color: #6b7280;
  font-weight: 600;
}

.modul-note-input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 1px;
}

.grade-calculator-box {
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #f6f8fb;
  border: 1px solid #d6deea;
  font-size: 13px;
  color: #1f2937;
}

.grade-calculator-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.grade-overall {
  margin-bottom: 10px;
  line-height: 1.35;
}

.grade-groups-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.grade-group-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 8px;
  align-items: baseline;
  padding-bottom: 6px;
  border-bottom: 1px dashed #d7deea;
}

.grade-group-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.grade-group-name {
  font-weight: 600;
}

.grade-group-value {
  font-weight: 700;
}

.grade-group-progress {
  grid-column: 1 / -1;
  font-size: 12px;
  color: #5b6474;
}

.grade-empty {
  color: #5b6474;
}
