html {
  scroll-behavior: smooth;
}

body {
  color: #14213d;
}

.ppdb-public-header {
  background: rgba(8, 38, 30, 0.94) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.ppdb-hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.ppdb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 28, 22, 0.92) 0%, rgba(5, 28, 22, 0.72) 46%, rgba(5, 28, 22, 0.3) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent);
}

.ppdb-hero .container {
  position: relative;
  z-index: 1;
}

.ppdb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #d9fff0;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
}

.ppdb-hero h1 {
  max-width: 720px;
  margin: 18px 0;
  color: #fff;
  font-size: 54px;
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.ppdb-hero p {
  max-width: 680px;
  color: #e8f8f2;
  font-size: 20px;
  line-height: 1.65;
}

.ppdb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.ppdb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ppdb-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.ppdb-btn-primary {
  background: #f6bd16;
  color: #132018;
  box-shadow: 0 12px 30px rgba(246, 189, 22, 0.24);
}

.ppdb-btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.ppdb-section {
  padding: 72px 0;
}

.ppdb-section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.ppdb-section-title h2 {
  color: #10251c;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
}

.ppdb-section-title p {
  color: #5b6878;
  font-size: 17px;
}

.ppdb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ppdb-path-card,
.ppdb-contact-card,
.ppdb-auth-card,
.ppdb-admin-card {
  border: 1px solid #e3e8ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.ppdb-path-card {
  min-height: 100%;
  padding: 24px;
}

.ppdb-path-card h3 {
  margin: 0 0 10px;
  color: #0f2a1f;
  font-size: 22px;
  font-weight: 900;
}

.ppdb-path-card .badge {
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
}

.ppdb-meta-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.ppdb-meta-list li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid #edf1f5;
  color: #465364;
}

.ppdb-requirement-list {
  padding-left: 18px;
  color: #334155;
  line-height: 1.7;
}

.ppdb-auth-page {
  min-height: 100vh;
  align-items: stretch;
  background: #eef4f1;
}

.ppdb-auth-shell {
  width: min(1180px, calc(100% - 24px));
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: 18px;
  margin: 24px auto;
}

.ppdb-auth-hero {
  min-height: 100%;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(8, 63, 50, 0.96), rgba(8, 36, 52, 0.92)),
    url("../images/sbsn2.jpg") center/cover;
}

.ppdb-auth-hero h1 {
  margin-top: 24px;
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.12;
}

.ppdb-auth-hero p {
  color: #def7ee;
  line-height: 1.7;
}

.ppdb-auth-card {
  padding: 28px;
}

.ppdb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ppdb-form-grid .full {
  grid-column: 1 / -1;
}

.ppdb-form-card label {
  font-weight: 700;
  color: #263344;
}

.ppdb-form-card .form-control {
  min-height: 44px;
  border-radius: 6px;
}

.ppdb-requirement-panel {
  padding: 18px;
  border: 1px solid #d8e3df;
  border-radius: 8px;
  background: #f8fbfa;
}

.ppdb-file-row {
  padding: 14px 0;
  border-top: 1px solid #e3ebe7;
}

.ppdb-file-row:first-child {
  border-top: 0;
}

.ppdb-admin-page {
  padding-bottom: 32px;
}

.ppdb-page-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.ppdb-page-heading h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  color: #14213d;
}

.ppdb-admin-card {
  padding: 20px;
  margin-bottom: 18px;
}

.ppdb-admin-card h4 {
  font-weight: 900;
}

.ppdb-table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ppdb-table-actions .btn {
  border-radius: 6px;
}

.ppdb-admin-layout {
  background: #f4f7fb;
}

.ppdb-admin-layout .content-wrapper {
  background: #f4f7fb;
  overflow-x: hidden;
}

.ppdb-topbar {
  min-height: 62px;
  border-bottom: 1px solid #dbe3ea;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.ppdb-topbar .nav-link {
  color: #334155;
  font-weight: 700;
}

.ppdb-topbar .nav-link.active,
.ppdb-topbar .nav-link:hover {
  color: #0f766e;
}

.ppdb-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #eef6f4;
}

.ppdb-top-badge {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.ppdb-user-menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ppdb-sidebar {
  background: #102033;
}

.ppdb-brand {
  min-height: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b1726;
}

.ppdb-brand .brand-text {
  color: #f8fafc;
  font-weight: 900;
  letter-spacing: 0;
}

.ppdb-sidebar-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin: 14px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
}

.ppdb-sidebar-profile strong {
  display: block;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ppdb-sidebar-profile span {
  display: block;
  color: #a7b4c6;
  font-size: 12px;
  text-transform: capitalize;
}

.ppdb-sidebar-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 8px;
  background: #0f766e;
  color: #fff;
  font-weight: 900;
}

.ppdb-nav .nav-header {
  padding: 18px 12px 8px;
  color: #93a4b8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ppdb-nav .nav-link {
  min-height: 42px;
  margin: 2px 8px;
  border-radius: 8px;
  color: #d8e1ed;
}

.ppdb-nav .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.ppdb-nav .nav-link.active {
  color: #fff;
  background: #0f766e;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.26);
}

.ppdb-nav .nav-treeview .nav-link {
  min-height: 36px;
  padding-left: 18px;
  color: #c6d3e1;
  font-size: 14px;
}

.ppdb-nav .nav-treeview .nav-icon {
  font-size: 10px;
}

.ppdb-nav .badge {
  margin-top: 3px;
}

.ppdb-nav-logout {
  color: #fecaca !important;
}

.ppdb-nav-logout:hover {
  background: rgba(185, 28, 28, 0.18) !important;
}

.sidebar-collapse .ppdb-sidebar-profile strong,
.sidebar-collapse .ppdb-sidebar-profile span {
  display: none;
}

.sidebar-collapse .ppdb-sidebar-profile {
  justify-content: center;
  padding: 10px 6px;
}

.ppdb-admin-shell {
  padding: 0 12px 32px;
}

.ppdb-admin-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f3d2e, #17496a);
  color: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.ppdb-admin-hero h1,
.ppdb-admin-hero h2,
.ppdb-admin-hero p {
  color: #fff;
}

.ppdb-admin-hero h1,
.ppdb-admin-hero h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
}

.ppdb-admin-hero p {
  margin: 8px 0 0;
  color: #ddf4ea;
}

.ppdb-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.ppdb-kpi-card {
  min-height: 126px;
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

.ppdb-kpi-card .label {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.ppdb-kpi-card .value {
  margin: 8px 0;
  color: #0f172a;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.ppdb-kpi-card .meta {
  color: #475569;
  font-size: 13px;
}

.ppdb-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.ppdb-chip-success {
  color: #166534;
  background: #dcfce7;
}

.ppdb-chip-warning {
  color: #854d0e;
  background: #fef3c7;
}

.ppdb-chip-danger {
  color: #991b1b;
  background: #fee2e2;
}

.ppdb-chip-muted {
  color: #475569;
  background: #e2e8f0;
}

.ppdb-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
}

.ppdb-progress-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr) 60px;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #edf2f7;
}

.ppdb-progress-row:first-child {
  border-top: 0;
}

.ppdb-progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.ppdb-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: #0f766e;
}

.ppdb-clean-table {
  width: 100%;
  margin-bottom: 0;
}

.ppdb-clean-table thead th {
  border-top: 0;
  border-bottom: 1px solid #dbe3ea;
  color: #475569;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ppdb-clean-table tbody td {
  vertical-align: middle;
}

.ppdb-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.ppdb-filter-bar .btn {
  border-radius: 6px;
  font-weight: 700;
}

.ppdb-data-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.ppdb-data-title h3 {
  margin: 0;
  color: #0f172a;
  font-weight: 900;
}

.ppdb-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ppdb-admin-card .dataTables_wrapper,
.card-body .dataTables_wrapper {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.ppdb-admin-card .dataTables_wrapper .row,
.card-body .dataTables_wrapper .row {
  margin-left: 0;
  margin-right: 0;
}

.ppdb-admin-card .table,
.card-body .table {
  width: 100% !important;
  margin-bottom: 0;
}

.ppdb-admin-card .table th,
.ppdb-admin-card .table td,
.card-body .table th,
.card-body .table td {
  max-width: 260px;
  padding: 10px 9px;
  vertical-align: middle;
  color: #1f2937;
  font-size: 13px;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.ppdb-admin-card .table thead th,
.card-body .table thead th {
  color: #475569;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ppdb-admin-card .table td:first-child,
.ppdb-admin-card .table th:first-child,
.card-body .table td:first-child,
.card-body .table th:first-child {
  width: 1%;
  max-width: 58px;
  text-align: center;
  white-space: nowrap;
}

.ppdb-admin-card .table td:last-child,
.ppdb-admin-card .table th:last-child,
.card-body .table td:last-child,
.card-body .table th:last-child {
  min-width: 110px;
  max-width: 190px;
}

.ppdb-admin-card .dataTables_filter,
.card-body .dataTables_filter {
  width: 100%;
}

.ppdb-admin-card .dataTables_filter label,
.card-body .dataTables_filter label {
  width: 100%;
  margin-bottom: 8px;
}

.ppdb-admin-card .dataTables_filter input,
.card-body .dataTables_filter input {
  width: min(100%, 260px);
  max-width: 100%;
}

.ppdb-admin-card .dt-buttons,
.card-body .dt-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.ppdb-admin-card table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control::before,
.ppdb-admin-card table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control::before,
.card-body table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control::before,
.card-body table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control::before {
  top: 50%;
  transform: translateY(-50%);
}

.ppdb-admin-card table.dataTable > tbody > tr.child ul.dtr-details,
.card-body table.dataTable > tbody > tr.child ul.dtr-details {
  display: grid;
  width: 100%;
  gap: 8px;
}

.ppdb-admin-card table.dataTable > tbody > tr.child ul.dtr-details > li,
.card-body table.dataTable > tbody > tr.child ul.dtr-details > li {
  display: grid;
  grid-template-columns: minmax(110px, 0.28fr) minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.ppdb-admin-card table.dataTable > tbody > tr.child span.dtr-title,
.card-body table.dataTable > tbody > tr.child span.dtr-title {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ppdb-admin-card table.dataTable > tbody > tr.child span.dtr-data,
.card-body table.dataTable > tbody > tr.child span.dtr-data {
  min-width: 0;
  color: #0f172a;
}

.ppdb-rich-preview {
  max-width: 520px;
  color: #334155;
  line-height: 1.45;
}

.ppdb-detail-tabs .nav-link {
  color: #475569;
  font-weight: 800;
}

.ppdb-detail-tabs .nav-link.active {
  color: #0f766e;
}

.ppdb-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ppdb-detail-row {
  display: flex;
  flex-direction: column;
  min-height: 72px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.ppdb-detail-row span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ppdb-detail-row strong {
  margin-top: 6px;
  color: #0f172a;
  font-size: 15px;
}

.ppdb-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 28px;
  align-items: center;
}

.ppdb-hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 33, 45, 0.74);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.ppdb-hero-panel h3 {
  color: #fff;
  font-weight: 900;
}

.ppdb-hero-mini-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ppdb-hero-mini-step:first-of-type {
  border-top: 0;
}

.ppdb-hero-mini-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f6bd16;
  color: #132018;
  font-weight: 900;
}

.ppdb-hero-mini-step strong {
  display: block;
  color: #fff;
}

.ppdb-hero-mini-step small {
  color: #dbeafe;
}

.ppdb-public-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.ppdb-flow-card {
  min-height: 180px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.ppdb-flow-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #0f766e;
  color: #fff;
  font-weight: 900;
}

.ppdb-flow-card h3 {
  margin: 16px 0 8px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
}

.ppdb-flow-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
}

.ppdb-auth-steps {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.ppdb-auth-step {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.ppdb-auth-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f6bd16;
  color: #132018;
  font-weight: 900;
}

.ppdb-auth-step strong {
  display: block;
  color: #fff;
}

.ppdb-auth-step small {
  color: #d8f5ec;
}

.ppdb-form-section {
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
}

.ppdb-form-section h4 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
}

.ppdb-form-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ppdb-form-card label {
  color: #263344;
  font-weight: 800;
}

.ppdb-form-card .form-control {
  min-height: 44px;
  border-radius: 6px;
}

.ppdb-edit-summary {
  position: sticky;
  top: 82px;
  display: grid;
  gap: 10px;
}

.ppdb-edit-summary h4 {
  margin: 0;
}

.ppdb-score-grid .form-group {
  min-width: 0;
}

.ppdb-password-wrap {
  display: flex;
  gap: 8px;
}

.ppdb-password-wrap .form-control {
  flex: 1;
}

.ppdb-student-layout .content-wrapper {
  background: #f4f7fb;
}

.ppdb-student-header-space {
  padding: 10px 0 0;
}

.ppdb-student-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: cover;
  border-radius: 8px;
}

.ppdb-sidebar-progress {
  padding: 12px;
  margin: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #d8e1ed;
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

.ppdb-student-page {
  padding: 0 12px 32px;
}

.ppdb-student-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.32fr);
  gap: 18px;
  align-items: center;
  padding: 26px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 52, 45, 0.96), rgba(20, 57, 91, 0.92)),
    url("../images/sbsn2.jpg") center/cover;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.ppdb-student-hero-soft {
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, #0f3d2e, #17496a);
}

.ppdb-student-hero h1 {
  margin: 14px 0 8px;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}

.ppdb-student-hero p {
  max-width: 760px;
  margin: 0;
  color: #e4f7ee;
  font-size: 16px;
  line-height: 1.65;
}

.ppdb-student-score {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.ppdb-student-score span,
.ppdb-student-score small {
  color: #d8f5ec;
}

.ppdb-student-score strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.ppdb-student-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 18px;
}

.ppdb-student-steps {
  display: grid;
  gap: 10px;
}

.ppdb-step-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #0f172a;
  background: #fff;
}

.ppdb-step-card:hover {
  color: #0f172a;
  text-decoration: none;
  border-color: #99f6e4;
}

.ppdb-step-card small,
.ppdb-step-card em {
  color: #64748b;
  font-style: normal;
}

.ppdb-step-card strong {
  display: block;
  font-weight: 900;
}

.ppdb-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #0f766e;
  background: #ccfbf1;
}

.ppdb-step-card.is-complete .ppdb-step-icon {
  color: #166534;
  background: #dcfce7;
}

.ppdb-step-card.is-complete em {
  color: #166534;
  font-weight: 800;
}

.ppdb-student-timeline {
  display: grid;
  gap: 12px;
}

.ppdb-student-timeline article {
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
}

.ppdb-student-timeline time {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.ppdb-student-timeline h5 {
  margin: 6px 0 8px;
  color: #0f172a;
  font-weight: 900;
}

.ppdb-profile-photo {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid #e2e8f0;
}

.ppdb-detail-grid .full {
  grid-column: 1 / -1;
}

.ppdb-score-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ppdb-score-card {
  min-height: 104px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.ppdb-score-card span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ppdb-score-card strong {
  display: block;
  margin-top: 8px;
  color: #0f172a;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.ppdb-sticky-actions {
  position: sticky;
  bottom: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 0;
  margin-top: 4px;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0), #f4f7fb 35%);
}

.ppdb-upload-list {
  display: grid;
  gap: 12px;
}

.ppdb-upload-item {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(260px, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.ppdb-upload-item strong {
  color: #0f172a;
  font-weight: 900;
}

.ppdb-check-list {
  display: grid;
  gap: 10px;
}

.ppdb-check-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #0f172a;
  background: #fff;
}

.ppdb-check-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #854d0e;
  background: #fef3c7;
}

.ppdb-check-item.is-done i {
  color: #166534;
  background: #dcfce7;
}

.ppdb-check-item strong,
.ppdb-check-item small {
  display: block;
}

.ppdb-check-item small {
  color: #64748b;
}

.ppdb-print-panel {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.ppdb-print-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 8px;
  color: #854d0e;
  background: #fef3c7;
  font-size: 28px;
}

.ppdb-print-icon.is-ready {
  color: #166534;
  background: #dcfce7;
}

.ppdb-classic-hero {
  min-height: 100vh;
  padding: 96px 0 56px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.ppdb-classic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
}

.ppdb-classic-hero .container {
  position: relative;
  z-index: 1;
}

.ppdb-classic-hero .site-hero-inner {
  min-height: calc(100vh - 152px);
}

.ppdb-classic-logo {
  width: min(360px, 72vw);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.35));
}

.ppdb-classic-hero-card {
  padding: 28px;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 0;
}

.ppdb-classic-hero-card h1 {
  color: #fff;
  font-family: "Source Sans Pro", arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.ppdb-classic-hero-card h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}

.ppdb-classic-hero-card .btn {
  margin: 4px;
  white-space: normal;
}

.ppdb-classic-contact {
  margin-top: 24px;
}

.ppdb-classic-contact h2 {
  color: #fff;
  font-size: 25px;
}

.ppdb-status-section {
  background-color: #0d5e52;
}

.ppdb-status-section h2,
.ppdb-status-section p {
  color: #fff;
}

.ppdb-status-input {
  max-width: 520px;
  min-height: 52px;
  margin: 0 auto;
  font-size: 18px;
}

.ppdb-alur-image {
  max-height: 760px;
  object-fit: contain;
}

.ppdb-prosedur-text {
  color: #253041;
  font-size: 18px;
  text-align: justify;
}

.ppdb-prosedur-text li {
  margin-bottom: 10px;
}

.ppdb-classic-course {
  height: 100%;
  display: block;
  padding-bottom: 18px;
  color: #334155;
  background: #fff;
}

.ppdb-classic-course:hover {
  color: #334155;
  text-decoration: none;
}

.ppdb-classic-course blockquote {
  padding-left: 0;
  border-left: 0;
}

.ppdb-classic-course img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
}

.ppdb-classic-course h3 {
  margin-top: 12px;
  font-weight: 900;
}

.ppdb-classic-date-list {
  min-height: 112px;
  margin: 0;
  padding: 0 22px;
  text-align: left;
  color: #2c3e50;
}

.ppdb-home-popup .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.35);
}

.ppdb-home-popup .modal-header {
  align-items: center;
  color: #fff;
  background: #0d5e52;
}

.ppdb-home-popup .modal-title {
  color: #fff;
  font-weight: 900;
}

.ppdb-home-popup .close {
  color: #fff;
  opacity: 1;
}

.ppdb-popup-image {
  max-height: 72vh;
  object-fit: contain;
}

.ppdb-auth-page.register-page {
  display: block;
  height: auto;
  min-height: 100vh;
  overflow-x: hidden;
  padding: 1px 0;
}

.ppdb-auth-card,
.ppdb-form-section,
.ppdb-form-card {
  min-width: 0;
}

.ppdb-auth-card input,
.ppdb-auth-card select,
.ppdb-auth-card textarea {
  max-width: 100%;
}

.ppdb-auth-card input[type="file"].form-control {
  height: auto;
  padding: 8px;
}

.ppdb-form-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 8px;
  line-height: 1.5;
}

.ppdb-form-alert > i {
  margin-top: 3px;
  flex: 0 0 auto;
}

.ppdb-alert-title {
  font-weight: 900;
}

.ppdb-alert-help {
  margin-top: 2px;
}

.ppdb-alert-list {
  margin: 8px 0 0;
  padding-left: 18px;
}

.ppdb-form-section {
  overflow: hidden;
}

.ppdb-optional-upload-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.ppdb-login-page {
  min-height: 100vh;
  height: auto;
  padding: 24px 0;
  background: #eef4f1;
}

.ppdb-login-shell {
  width: min(980px, calc(100% - 24px));
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 0.72fr);
  gap: 18px;
  margin: auto;
}

.ppdb-login-hero,
.ppdb-login-card {
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.ppdb-login-hero {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(8, 63, 50, 0.96), rgba(8, 36, 52, 0.92)),
    url("../images/sbsn2.jpg") center/cover;
}

.ppdb-admin-login-page .ppdb-login-hero {
  background:
    linear-gradient(145deg, rgba(15, 32, 51, 0.96), rgba(13, 94, 82, 0.92)),
    url("../images/sbsn2.jpg") center/cover;
}

.ppdb-login-hero h1 {
  margin: 22px 0 12px;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
}

.ppdb-login-hero p {
  color: #def7ee;
  font-size: 17px;
  line-height: 1.7;
}

.ppdb-login-card {
  align-self: center;
  padding: 28px;
  background: #fff;
}

.ppdb-login-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 12px;
}

.ppdb-login-card h3 {
  margin: 0;
  color: #0f172a;
  font-weight: 900;
}

.ppdb-login-card .form-control,
.ppdb-login-card .input-group-text {
  min-height: 46px;
  border-radius: 6px;
}

.ppdb-login-card .input-group .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.ppdb-login-card .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.ppdb-toggle-password {
  border: 1px solid #ced4da;
  color: #475569;
  background: #fff;
  cursor: pointer;
}

.ppdb-login-help {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0;
  margin-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.ppdb-login-help a {
  font-weight: 800;
}

.ppdb-login-contact {
  padding: 14px;
  border-radius: 8px;
  background: #f8fafc;
}

@media (max-width: 992px) {
  .ppdb-hero h1 {
    font-size: 42px;
  }

  .ppdb-grid,
  .ppdb-public-flow,
  .ppdb-hero-inner,
  .ppdb-auth-shell,
  .ppdb-kpi-grid,
  .ppdb-work-grid,
  .ppdb-detail-grid,
  .ppdb-form-section-grid,
  .ppdb-student-hero,
  .ppdb-student-grid {
    grid-template-columns: 1fr;
  }

  .ppdb-upload-item {
    grid-template-columns: 1fr;
  }

  .ppdb-login-shell {
    grid-template-columns: 1fr;
  }

  .ppdb-login-hero {
    min-height: auto;
  }

  .ppdb-classic-hero-card h1 {
    font-size: 36px;
  }

  .ppdb-classic-hero-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .ppdb-hero {
    min-height: 78vh;
    padding-top: 82px;
  }

  .ppdb-hero h1 {
    font-size: 34px;
  }

  .ppdb-hero p,
  .ppdb-section-title p {
    font-size: 16px;
  }

  .ppdb-section {
    padding: 48px 0;
  }

  .ppdb-form-grid {
    grid-template-columns: 1fr;
  }

  .ppdb-auth-card,
  .ppdb-auth-hero,
  .ppdb-admin-card {
    padding: 18px;
  }

  .ppdb-student-page {
    padding: 0 6px 24px;
  }

  .ppdb-student-hero {
    padding: 20px;
  }

  .ppdb-student-hero h1 {
    font-size: 28px;
  }

  .ppdb-step-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .ppdb-step-card em {
    grid-column: 2;
  }

  .ppdb-score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ppdb-sticky-actions {
    flex-direction: column-reverse;
  }

  .ppdb-sticky-actions .btn {
    width: 100%;
  }

  .ppdb-classic-hero {
    padding: 86px 0 36px;
  }

  .ppdb-classic-hero .site-hero-inner {
    min-height: auto;
  }

  .ppdb-classic-hero-card {
    padding: 18px;
  }

  .ppdb-classic-hero-card h1 {
    font-size: 30px;
  }

  .ppdb-classic-hero-card h3,
  .ppdb-prosedur-text {
    font-size: 16px;
  }

  .ppdb-classic-hero-card .btn,
  .ppdb-classic-contact .btn {
    width: 100%;
    margin: 5px 0;
  }

  .ppdb-status-input {
    font-size: 16px;
  }

  .ppdb-auth-shell {
    width: calc(100% - 12px);
    margin: 8px auto;
    gap: 10px;
  }

  .ppdb-auth-hero {
    padding: 18px;
  }

  .ppdb-auth-hero h1 {
    font-size: 28px;
  }

  .ppdb-form-section {
    padding: 14px;
  }

  .ppdb-password-wrap {
    gap: 6px;
  }

  .ppdb-password-wrap .btn {
    flex: 0 0 48px;
    padding-left: 0;
    padding-right: 0;
  }

  .ppdb-optional-upload-control {
    grid-template-columns: 1fr;
  }

  #form_daftar .d-flex.justify-content-between {
    flex-direction: column-reverse;
    align-items: stretch !important;
    gap: 10px;
  }

  #form_daftar .d-flex.justify-content-between .btn {
    width: 100%;
  }

  .ppdb-file-row label {
    display: block !important;
  }

  .ppdb-file-row .badge {
    display: inline-block;
    margin-top: 6px;
  }

  .ppdb-login-page {
    padding: 8px 0;
  }

  .ppdb-login-shell {
    width: calc(100% - 12px);
    gap: 10px;
  }

  .ppdb-login-hero,
  .ppdb-login-card {
    padding: 18px;
  }

  .ppdb-login-hero h1 {
    font-size: 30px;
  }

  .ppdb-login-help {
    flex-direction: column;
    text-align: center;
  }
}
