/* =========================================================
   pages/student-settings.css
   ---------------------------------------------------------
   Student settings page styles.
   ========================================================= */

/* =========================================================
   23) STUDENT SETTINGS
   --------------------------------------------------------- */

.nn-student-settings-page {
  display: grid;
  gap: 16px;
}

.nn-student-settings-page__notice {
  background: #f6fffb;
  border: 1px solid #b8e6d3;
  color: #0f6b4b;
  font-weight: 600;
}

.nn-student-settings-form {
  display: grid;
  gap: 16px;
}

.nn-student-settings-table {
  width: 100%;
  border-collapse: collapse;
}

.nn-student-settings-table th,
.nn-student-settings-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}

.nn-student-settings-table th {
  color: var(--muted);
  font-weight: 700;
}

.nn-student-settings-table select {
  min-width: 160px;
  width: 100%;
  max-width: 220px;
}

.nn-student-settings-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nn-student-settings-checkbox span {
  font-weight: 600;
}

.nn-student-settings-page__actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .nn-student-settings-table {
    min-width: 760px;
  }

  .nn-school-card__tableWrap {
    overflow-x: auto;
  }
}

@media (max-width: 767px) {
  .nn-student-settings-page__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

