:root {
  --hk-primary: #3478f6;
  --hk-accent:  #FF7A7A;
  --hk-secondary: #FFD447;
  --hk-mint:   #32D4A4;
  --hk-purple: #A88CFF;
  --hk-bg:     #F8F9FF;
  --hk-text:   #1F2933;
  --hk-radius-lg: 24px;
  --hk-radius-md: 16px;
  --hk-shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.12);
}

*{box-sizing:border-box;}

body.hk-body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:radial-gradient(circle at top left,#4f8efe,#3478f6);
  color:var(--hk-text);
}

.hk-main{
  padding:24px;
}

.hk-brand-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:var(--hk-text);
}

.hk-brand-icon{
  width:32px;
  height:32px;
  border-radius:12px;
}

.hk-brand-text{
  font-weight:700;
}

.hk-nav-right{
  display:flex;
  align-items:center;
  gap:8px;
}

.hk-btn-nav{
  padding:6px 14px;
  border-radius:999px;
  font-size:.85rem;
  text-decoration:none;
}

.hk-btn-nav.hk-btn-primary{
  background:var(--hk-primary);
  color:#fff;
}

.hk-btn-nav.hk-btn-ghost{
  border:1px solid rgba(15,23,42,0.12);
  color:var(--hk-text);
  background:#fff;
}

/* buttons */
.hk-btn{
  border:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:10px 20px;
  border-radius:999px;
  text-decoration:none;
  font-size:.95rem;
}
.hk-btn-primary{
  background:var(--hk-primary);
  color:#fff;
  box-shadow:0 12px 30px rgba(52,120,246,0.45);
}
.hk-btn-ghost,
.hk-btn-outline{
  background:#fff;
  color:var(--hk-primary);
  border:1px solid rgba(52,120,246,0.25);
}

/* hero */
.hk-hero{
  max-width:1080px;
  margin:24px auto;
  background:var(--hk-bg);
  border-radius:32px;
  box-shadow:var(--hk-shadow-soft);
  display:grid;
  grid-template-columns: minmax(0,3fr) minmax(0,2.4fr);
  overflow:hidden;
}
@media(max-width:800px){
  .hk-hero{
    grid-template-columns:1fr;
    border-radius:24px;
  }
}
.hk-hero-left,.hk-hero-right{
  padding:32px 36px;
}
.hk-chip{
  display:inline-block;
  padding:4px 12px;
  border-radius:999px;
  background:rgba(52,120,246,.08);
  color:var(--hk-primary);
  font-size:.8rem;
  font-weight:600;
  margin-bottom:12px;
}
.hk-hero-title{
  font-size:2.1rem;
  line-height:1.2;
  margin:0 0 12px;
  font-weight:800;
}
.hk-highlight{
  color:var(--hk-primary);
}
.hk-hero-sub{
  font-size:.95rem;
  color:#4b5563;
  max-width:420px;
  margin-bottom:22px;
}
.hk-cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.hk-demo-card{
  background:#f8f9ff;
  border-radius:24px;
  padding:18px 20px;
  box-shadow:0 14px 35px rgba(0,0,0,.18);
}
.hk-demo-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:8px;
}
.hk-demo-sub{
  font-size:.8rem;
  color:#6b7280;
}
.hk-avatar{
  width:36px;
  height:36px;
  border-radius:50%;
  background:linear-gradient(135deg,#FF7A7A,#FFD447);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.85rem;
  font-weight:700;
  color:#fff;
}
.hk-demo-body{
  display:flex;
  align-items:center;
  gap:10px;
  margin:10px 0;
}
.hk-demo-name{
  font-size:.9rem;
  font-weight:600;
}
.hk-demo-meta{
  font-size:.8rem;
  color:#6b7280;
}
.hk-progress{
  height:8px;
  background:rgba(15,23,42,.08);
  border-radius:999px;
  overflow:hidden;
  margin-top:6px;
}
.hk-progress-inner{
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,#3478f6,#A88CFF);
}
.hk-demo-foot{
  margin-top:10px;
  font-size:.78rem;
  color:#111827;
  display:flex;
  align-items:center;
  gap:6px;
}
.hk-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--hk-mint);
}

/* pages */
.hk-page{
  max-width:1080px;
  margin:24px auto;
  background:#fff;
  border-radius:24px;
  padding:24px 28px;
  box-shadow:0 8px 24px rgba(15,23,42,0.08);
}
.hk-page h1{
  margin-top:0;
}
.hk-sub{
  font-size:.9rem;
  color:#6b7280;
  margin:4px 0 18px;
}

/* forms */
.hk-form-page{
  max-width:500px;
  margin:40px auto;
  background:#fff;
  padding:24px 28px;
  border-radius:24px;
  box-shadow:0 8px 24px rgba(15,23,42,0.1);
}
.hk-form-page h1{
  margin-top:0;
}
.hk-form label{
  display:block;
  font-size:.87rem;
  margin-bottom:12px;
}
.hk-form input,
.hk-form select,
.hk-form textarea{
  width:100%;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid #d1d5db;
  font:inherit;
  margin-top:4px;
}
.hk-form-note{
  font-size:.85rem;
  color:#6b7280;
}
.hk-grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.hk-grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
@media(max-width:720px){
  .hk-grid-2,.hk-grid-3{
    grid-template-columns:1fr;
  }
}

/* cards & table */
.hk-dashboard{
  max-width:1080px;
  margin:24px auto;
  background:#fff;
  border-radius:24px;
  padding:24px 28px;
  box-shadow:0 8px 24px rgba(15,23,42,0.08);
}
.hk-grid-2,.hk-grid-3{margin-top:18px;}
.hk-card{
  background:#fff;
  border-radius:18px;
  padding:18px;
  border:1px solid #e5e7eb;
}
.hk-card-main{
  background:linear-gradient(135deg,#3478f6,#32D4A4);
  color:#fff;
}
.hk-card-main p{color:#e5e7eb;}
.hk-card-side{
  background:#f9fafb;
}
.hk-muted{
  font-size:.85rem;
  color:#9ca3af;
}

.hk-table{
  width:100%;
  border-collapse:collapse;
  font-size:.85rem;
}
.hk-table th,
.hk-table td{
  padding:8px 10px;
  border-bottom:1px solid #e5e7eb;
  text-align:left;
}
.hk-table th{
  font-weight:600;
  background:#f3f4f6;
}

/* badges & status */
.hk-badge{
  display:inline-block;
  padding:3px 10px;
  border-radius:999px;
  font-size:.75rem;
}
.hk-status-pending{background:#FEF3C7;color:#92400E;}
.hk-status-disetujui{background:#DCFCE7;color:#166534;}
.hk-status-ditolak{background:#FEE2E2;color:#991B1B;}
.hk-status-selesai{background:#DBEAFE;color:#1D4ED8;}

/* guru list */
.hk-list{
  margin-top:18px;
  display:grid;
  gap:12px;
}
.hk-card-guru{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.hk-card-guru-header{
  display:flex;
  gap:10px;
  align-items:center;
}
.hk-avatar-guru{
  width:44px;
  height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,#FF7A7A,#FFD447);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
}
.hk-guru-name{
  margin:0;
}
.hk-guru-headline{
  margin:2px 0 0;
  font-size:.85rem;
  color:#6b7280;
}
.hk-guru-meta .hk-tag{
  margin-right:6px;
}
.hk-guru-fee{
  margin-top:8px;
  font-size:.85rem;
}
.hk-tag{
  display:inline-block;
  padding:3px 10px;
  border-radius:999px;
  background:#e5edff;
  color:#1D4ED8;
  font-size:.75rem;
}
.hk-card-guru-footer{
  margin-top:8px;
}

/* alerts */
.hk-alert{
  padding:10px 14px;
  border-radius:10px;
  font-size:.85rem;
  margin-bottom:12px;
}
.hk-alert-success{
  background:#DCFCE7;
  color:#166534;
}
.hk-alert-danger{
  background:#FEE2E2;
  color:#991B1B;
}

/* chat */
.hk-chat-page{
  max-width:900px;
}
.hk-chat-container{
  margin-top:16px;
  border-radius:18px;
  border:1px solid #e5e7eb;
  background:#f9fafb;
  display:flex;
  flex-direction:column;
  height:500px;
}
.hk-chat-messages{
  flex:1;
  padding:12px;
  overflow-y:auto;
}
.hk-chat-row{
  margin-bottom:8px;
  display:flex;
}
.hk-chat-me{
  justify-content:flex-end;
}
.hk-chat-other{
  justify-content:flex-start;
}
.hk-chat-bubble{
  max-width:70%;
  padding:8px 12px;
  border-radius:16px;
  font-size:.88rem;
}
.hk-chat-me .hk-chat-bubble{
  background:var(--hk-primary);
  color:#fff;
  border-bottom-right-radius:4px;
}
.hk-chat-other .hk-chat-bubble{
  background:#fff;
  color:#111827;
  border-bottom-left-radius:4px;
  border:1px solid #e5e7eb;
}
.hk-chat-name{
  font-size:.75rem;
  font-weight:600;
  margin-bottom:2px;
}
.hk-chat-time{
  font-size:.7rem;
  margin-top:4px;
  opacity:.7;
}
.hk-chat-input{
  border-top:1px solid #e5e7eb;
  padding:10px;
  display:flex;
  gap:8px;
}
.hk-chat-input textarea{
  flex:1;
  border-radius:12px;
  border:1px solid #d1d5db;
  resize:none;
  font:inherit;
  padding:8px;
}

/* footer */
.hk-footer{
  text-align:center;
  padding:12px;
  font-size:.75rem;
  color:#e5e7eb;
}

.hk-showpass-label{font-size:.8rem;color:#6b7280;display:flex;align-items:center;gap:6px;margin:4px 0 10px;}

.hk-rating-row{margin-top:4px;font-size:.8rem;display:flex;align-items:center;gap:6px;}
.hk-rating-lg{margin-top:8px;}
.hk-stars{color:#fbbf24;font-size:.85rem;}
.hk-rating-text{font-size:.8rem;color:#4b5563;}
.hk-review-list{margin-top:8px;display:flex;flex-direction:column;gap:8px;}
.hk-review-item{padding:8px 10px;border-radius:10px;background:#f9fafb;border:1px solid #e5e7eb;}
.hk-review-header{display:flex;justify-content:space-between;align-items:center;font-size:.8rem;margin-bottom:4px;}
.hk-review-name{font-weight:600;}
.hk-review-text{font-size:.85rem;margin:0;}
.hk-review-date{font-size:.7rem;color:#9ca3af;margin-top:2px;}
.hk-fav-form{margin-left:auto;}
.hk-fav-btn{border-radius:999px;border:1px solid #e5e7eb;background:#fff;font-size:.8rem;padding:6px 10px;cursor:pointer;}
.hk-fav-active{background:#FF7A7A;color:#fff;border-color:#FF7A7A;}
.hk-fav-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px;}
.hk-fav-item{display:flex;gap:10px;align-items:flex-start;}
.hk-fav-name{font-size:.9rem;font-weight:600;}
.hk-fav-headline{font-size:.8rem;color:#6b7280;}
.hk-fav-fee{font-size:.8rem;margin:4px 0;}
.hk-rating-input{display:flex;flex-direction:row-reverse;gap:6px;margin:6px 0 10px;}
.hk-rating-input input{display:none;}
.hk-rating-input label span{cursor:pointer;font-size:1.1rem;color:#d1d5db;}
.hk-rating-input input:checked ~ label span,
.hk-rating-input label:hover span{color:#fbbf24;}
.hk-nav-bell{margin-right:8px;position:relative;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;}
.hk-bell-icon{font-size:1.1rem;}
.hk-bell-dot{position:absolute;top:0;right:0;width:9px;height:9px;border-radius:999px;background:#FF7A7A;border:2px solid #fff;}
.hk-nav-link{font-size:.85rem;margin:0 6px;text-decoration:none;color:#374151;}

/* ===== DASHBOARD GURU MODERN ===== */
.hk-dashboard-guru{
  max-width:1080px;
}

/* HERO GURU */
.hk-hero-guru{
  display:grid;
  grid-template-columns:minmax(0,3fr) minmax(0,2fr);
  gap:18px;
  margin-bottom:22px;
}
@media(max-width:900px){
  .hk-hero-guru{
    grid-template-columns:1fr;
  }
}
.hk-hero-guru-main{
  background:linear-gradient(135deg,#3478f6,#32D4A4);
  border-radius:24px;
  padding:20px 22px;
  color:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
}
.hk-hero-guru-main h1{
  margin:4px 0 6px;
}
.hk-hero-guru-main p{
  margin:0 0 12px;
  font-size:.9rem;
  color:#E5E7EB;
}
.hk-chip-soft{
  background:rgba(255,255,255,0.12);
  color:#fff;
}
.hk-hero-guru-meta{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:12px;
}
.hk-hero-guru-cta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.hk-hero-guru-side{
  display:flex;
  align-items:stretch;
}
.hk-hero-guru-card{
  background:#fff;
  border-radius:24px;
  padding:16px 18px;
  box-shadow:0 12px 32px rgba(15,23,42,0.14);
  width:100%;
}
.hk-hero-badge{
  font-size:.78rem;
  padding:4px 10px;
  border-radius:999px;
  background:#EFF6FF;
  color:#1D4ED8;
}
.hk-hero-guru-stats{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:12px;
}
.hk-hero-guru-stats > div{
  flex:1;
}
.hk-hero-stat-label{
  font-size:.75rem;
  color:#6b7280;
}
.hk-hero-stat-value{
  font-size:1.3rem;
  font-weight:700;
}
.hk-hero-guru-rating{
  margin-top:10px;
  border-top:1px dashed #E5E7EB;
  padding-top:8px;
}
.hk-hero-rating-text{
  font-size:.8rem;
  color:#4b5563;
}

/* KPI GRID */
.hk-grid-4{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin:4px 0 18px;
}
@media(max-width:900px){
  .hk-grid-4{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:600px){
  .hk-grid-4{
    grid-template-columns:1fr;
  }
}
.hk-kpi-card{
  background:#fff;
  border-radius:18px;
  padding:12px 14px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  border:1px solid #E5E7EB;
}
.hk-kpi-icon{
  width:32px;
  height:32px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#EFF6FF;
  font-size:1.1rem;
}
.hk-kpi-body{
  flex:1;
}
.hk-kpi-label{
  font-size:.8rem;
  color:#6b7280;
}
.hk-kpi-value{
  font-size:1.2rem;
  font-weight:700;
  margin:2px 0 2px;
}
.hk-kpi-sub{
  font-size:.75rem;
  color:#9ca3af;
}

/* Pills */
.hk-pill-status{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  font-size:.78rem;
  background:rgba(255,255,255,0.16);
  border:1px solid rgba(255,255,255,0.28);
}

/* GRID MAIN BOTTOM */
.hk-grid-main-guru{
  margin-top:10px;
  align-items:flex-start;
}
.hk-grid-1-stack{
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* CARD HEAD ROW */
.hk-card-head-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
  margin-bottom:8px;
}
.hk-card-head-row h2{
  margin:0;
}

/* TIMELINE LIST */
.hk-timeline-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.hk-timeline-item{
  display:flex;
  gap:10px;
}
.hk-timeline-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#3478f6;
  margin-top:6px;
}
.hk-timeline-content{
  flex:1;
  background:#fff;
  border-radius:12px;
  padding:8px 10px;
  border:1px solid #E5E7EB;
}
.hk-timeline-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:.85rem;
}
.hk-timeline-title{
  font-weight:600;
}
.hk-timeline-sub{
  font-size:.78rem;
  color:#6b7280;
  margin-top:2px;
}
.hk-timeline-actions{
  margin-top:4px;
  font-size:.8rem;
}
.hk-timeline-date{
  margin-top:2px;
  font-size:.7rem;
  color:#9ca3af;
}

/* QUICK ACTIONS */
.hk-card-quick .hk-quick-actions{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:10px;
}

/* BIG TEXT UTIL */
.hk-big{
  font-size:1.4rem;
  font-weight:700;
}
/* ============ COMMON DASHBOARD LAYOUT ============ */
.hk-dashboard-common{
  max-width:1080px;
}

/* HERO */
.hk-dash-hero{
  display:grid;
  grid-template-columns:minmax(0,3fr) minmax(0,2fr);
  gap:18px;
  margin-bottom:20px;
}
@media(max-width:900px){
  .hk-dash-hero{grid-template-columns:1fr;}
}
.hk-dash-hero-main{
  background:linear-gradient(135deg,#3478F6,#32D4A4);
  border-radius:24px;
  padding:18px 20px;
  color:#fff;
  box-shadow:0 18px 40px rgba(15,23,42,0.18);
}
.hk-dash-hero-student{
  background:linear-gradient(135deg,#3478F6,#FF7A7A);
}
.hk-dash-hero-admin{
  background:linear-gradient(135deg,#3478F6,#6366F1);
}
.hk-dash-hero-main h1{
  margin:4px 0 6px;
}
.hk-dash-hero-main p{
  margin:0 0 10px;
  font-size:.9rem;
  color:#E5E7EB;
}
.hk-dash-hero-chip{
  display:inline-flex;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.16);
  font-size:.78rem;
}
.hk-dash-hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:10px;
}
.hk-dash-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.hk-dash-hero-side{
  display:flex;
  align-items:stretch;
}
.hk-dash-hero-card{
  background:#fff;
  border-radius:24px;
  padding:14px 16px;
  box-shadow:0 12px 30px rgba(15,23,42,0.12);
  width:100%;
}
.hk-dash-hero-card-header{
  font-size:.8rem;
  font-weight:600;
  color:#111827;
  margin-bottom:6px;
}
.hk-dash-hero-stats{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:8px;
}
.hk-dash-stat-label{
  font-size:.75rem;
  color:#6B7280;
}
.hk-dash-stat-value{
  font-size:1.2rem;
  font-weight:700;
}
.hk-dash-hero-rating{
  margin-top:8px;
  border-top:1px dashed #E5E7EB;
  padding-top:6px;
}
.hk-dash-hero-rating-text{
  font-size:.8rem;
  color:#4B5563;
}
.hk-dash-tips{
  font-size:.85rem;
  color:#4B5563;
  margin:4px 0 0;
}

/* pills */
.hk-pill-soft{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.16);
  border:1px solid rgba(255,255,255,0.4);
  font-size:.78rem;
}

/* KPI GRID */
.hk-dash-kpi{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin:4px 0 18px;
}
@media(max-width:900px){
  .hk-dash-kpi{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:600px){
  .hk-dash-kpi{grid-template-columns:1fr;}
}
.hk-dash-kpi-card{
  background:#fff;
  border-radius:16px;
  padding:10px 12px;
  display:flex;
  gap:8px;
  align-items:flex-start;
  border:1px solid #E5E7EB;
}
.hk-dash-kpi-icon{
  width:30px;
  height:30px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#EFF6FF;
  font-size:1.1rem;
}
.hk-dash-kpi-label{
  font-size:.8rem;
  color:#6B7280;
}
.hk-dash-kpi-value{
  font-size:1.2rem;
  font-weight:700;
  margin:2px 0 2px;
}
.hk-dash-kpi-sub{
  font-size:.75rem;
  color:#9CA3AF;
}

/* MAIN GRID */
.hk-dash-main-grid{
  display:grid;
  grid-template-columns:minmax(0,3fr) minmax(0,2fr);
  gap:14px;
}
@media(max-width:900px){
  .hk-dash-main-grid{
    grid-template-columns:1fr;
  }
}
.hk-dash-side-column{
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* MINI LIST */
.hk-dash-mini-list{
  list-style:none;
  padding-left:0;
  margin:4px 0 0;
  font-size:.8rem;
  color:#4B5563;
}
.hk-dash-mini-list li{
  margin-bottom:4px;
}

/* Quick actions */
.hk-quick-actions{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:8px;
}
.hk-nav-role-tag{
  margin-left:6px;
  font-size:.7rem;
  padding:2px 6px;
  border-radius:999px;
  background:#EFF6FF;
  color:#1D4ED8;
}
/* ------------------------------
   GURU LIST – HERO SECTION
--------------------------------*/
.guru-hero {
  background: linear-gradient(135deg, #3478F6, #6A5BFF);
  padding: 50px 20px;
  border-radius: 0 0 40px 40px;
  text-align: center;
  color: white;
}

.guru-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.guru-hero-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.guru-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 6px;
}

.guru-subtitle {
  font-size: 16px;
  opacity: 0.9;
}

/* ------------------------------
   FILTER CARD
--------------------------------*/
.guru-filter-card {
  max-width: 900px;
  background: white;
  margin: -40px auto 20px;
  border-radius: 20px;
  padding: 24px 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.guru-filter-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #1F2937;
}

.guru-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 780px) {
  .guru-filter-grid {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 4px;
  display: block;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #3478F6;
  box-shadow: 0 0 6px rgba(52, 120, 246, 0.4);
}

/* BUTTONS */
.guru-filter-actions {
  grid-column: span 3;
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

@media (max-width: 780px) {
  .guru-filter-actions {
    grid-column: span 1;
    flex-direction: column;
  }
}

.btn-primary {
  background: #3478F6;
  padding: 10px 18px;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary:hover {
  background: #2563EB;
}

.btn-reset {
  background: #F3F4F6;
  padding: 10px 18px;
  border-radius: 10px;
  color: #4B5563;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.btn-reset:hover {
  background: #E5E7EB;
}
/* ===============================
   GURU LIST – RESULT CARDS
=================================*/
.guru-results-wrapper{
  max-width: 1080px;
  margin: 0 auto 40px;
}
.guru-results-head{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  margin:10px 4px 8px;
}
.guru-results-title{
  font-size:20px;
  font-weight:600;
  margin:0;
  color:#111827;
}
.guru-results-count{
  font-size:.85rem;
  color:#6B7280;
}
.guru-empty{
  background:#FFF;
  border-radius:18px;
  padding:20px;
  text-align:center;
  box-shadow:0 10px 25px rgba(15,23,42,0.08);
}
.guru-empty p{
  margin:0;
}
.guru-empty-sub{
  font-size:.85rem;
  color:#6B7280;
  margin-top:4px;
}

.guru-card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:16px;
  margin-top:8px;
}

.guru-card{
  background:#FFFFFF;
  border-radius:18px;
  padding:14px 16px 12px;
  box-shadow:0 14px 30px rgba(15,23,42,0.12);
  display:flex;
  flex-direction:column;
  gap:8px;
  border:1px solid #E5E7EB;
}

.guru-card-top{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.guru-avatar{
  width:44px;
  height:44px;
  border-radius:999px;
  background:#E0ECFF;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:#1D4ED8;
  font-size:1.1rem;
}

.guru-card-main{
  flex:1;
}

.guru-name{
  font-size:1rem;
  margin:0 0 2px;
}

.guru-headline{
  font-size:.85rem;
  color:#4B5563;
  margin:0 0 4px;
}

.guru-meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:4px;
  margin-bottom:4px;
}

.guru-chip{
  padding:3px 8px;
  border-radius:999px;
  background:#F3F4F6;
  font-size:.75rem;
  color:#4B5563;
}

.guru-rating-row{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:.8rem;
}
.guru-stars{
  color:#FBBF24;
}
.guru-rating-text{
  color:#4B5563;
}
.guru-muted{
  color:#9CA3AF;
}

/* middle row */
.guru-card-middle{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-top:4px;
}
.guru-fee-label{
  font-size:.78rem;
  color:#6B7280;
}
.guru-fee-value{
  font-size:1rem;
  font-weight:700;
  color:#111827;
}
.guru-subjects{
  display:flex;
  flex-wrap:wrap;
  gap:4px;
}
.guru-subject-chip{
  padding:3px 8px;
  border-radius:999px;
  background:#EFF6FF;
  font-size:.75rem;
  color:#1D4ED8;
}
.guru-subject-more{
  font-size:.75rem;
  color:#6B7280;
}

/* bottom buttons */
.guru-card-bottom{
  margin-top:8px;
  display:flex;
  gap:8px;
}
.btn-card-primary,
.btn-card-ghost{
  flex:1;
  text-align:center;
  padding:8px 10px;
  border-radius:999px;
  font-size:.85rem;
  font-weight:600;
  text-decoration:none;
  transition:0.15s;
}
.btn-card-primary{
  background:#3478F6;
  color:#FFF;
  border:none;
}
.btn-card-primary:hover{
  background:#2563EB;
}
.btn-card-ghost{
  background:#F3F4F6;
  color:#374151;
}
.btn-card-ghost:hover{
  background:#E5E7EB;
}
/* ========== MULTI-SELECT MATA PELAJARAN ========== */
.hk-multi-select {
  position: relative;
  max-width: 100%;
}

.hk-multi-select-control {
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 44px;
  cursor: pointer;
}

.hk-multi-select-placeholder {
  font-size: 0.85rem;
  color: #9ca3af;
}

.hk-multi-select-value {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.8rem;
}

.hk-ms-chip {
  background: #eff6ff;
  border-radius: 999px;
  padding: 4px 10px;
  color: #1d4ed8;
  font-size: 0.75rem;
}

.hk-ms-chip-more {
  background: #f3f4f6;
  border-radius: 999px;
  padding: 4px 10px;
  color: #4b5563;
  font-size: 0.75rem;
}

.hk-multi-select-arrow {
  margin-left: auto;
  font-size: 0.75rem;
  color: #6b7280;
}

/* Panel dropdown */
.hk-multi-select-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  padding: 10px 14px;
  display: none;
  z-index: 40;
}

.hk-multi-select.is-open .hk-multi-select-panel {
  display: block;
}

.hk-multi-select-search {
  width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.hk-multi-select-list {
  max-height: 240px;
  overflow-y: auto;
}

.hk-multi-select-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 10px;
  font-size: 0.87rem;
  cursor: pointer;
}

.hk-multi-select-option:hover {
  background: #f3f4ff;
}

.hk-multi-select-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
}
/* --- FORM LAYOUT DASAR --- */
.form-group {
  margin-bottom: 16px;          /* jarak antar field */
}

/* Input & select seragam bentuknya */
.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  outline: none;
  background-color: #fff;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #3478F6;
  box-shadow: 0 0 0 1px rgba(52, 120, 246, 0.15);
}

/* Select khusus (mode les) — biar sama feel-nya dengan multi-select */
.hk-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9ca3af 50%),
                    linear-gradient(135deg, #9ca3af 50%, transparent 50%);
  background-position: calc(100% - 14px) calc(50% - 3px),
                       calc(100% - 10px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}

/* Multi-select mata pelajaran diseragamkan jaraknya */
.hk-multi-select {
  margin-top: 4px;
}

/* Label kategori jenjang (SD/SMP/SMA) di dalam dropdown */
.hk-ms-group-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 6px 2px 2px;
}
/* --- Layout dua kolom untuk form + preview --- */
.hk-two-col {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.hk-col-main {
  flex: 3;
  min-width: 0;
}

.hk-col-preview {
  flex: 2;
  min-width: 260px;
}

@media (max-width: 900px) {
  .hk-two-col {
    flex-direction: column;
  }
  .hk-col-preview {
    width: 100%;
  }
}

/* --- Kartu preview guru --- */
.hk-preview-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

.hk-preview-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 8px;
}

.gp-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.gp-name {
  margin: 0;
  font-size: 1rem;
}

.gp-headline {
  margin: 2px 0 0;
  font-size: 0.85rem;
  color: #4b5563;
}

.gp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.gp-section {
  margin-bottom: 8px;
}

.gp-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9ca3af;
  margin-bottom: 2px;
}

.gp-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}

.gp-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.gp-subject-chip {
  padding: 3px 8px;
  border-radius: 999px;
  background: #eff6ff;
  font-size: 0.75rem;
  color: #1d4ed8;
}

.gp-muted {
  font-size: 0.8rem;
  color: #9ca3af;
}

.gp-footer-note {
  margin-top: 6px;
  font-size: 0.75rem;
  color: #9ca3af;
}
/* === NAVBAR UTAMA === */
.hk-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f8fbff;
  border-bottom: 1px solid #e5e7eb;
  padding: 8px 0;
}

.hk-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* KIRI: BRAND + MENU PUBLIK */
.hk-nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hk-brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hk-brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
}

.hk-brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hk-brand-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: #111827;
}

.hk-brand-tagline {
  font-size: 0.7rem;
  color: #9ca3af;
}

.hk-nav-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hk-nav-main .hk-nav-link {
  white-space: nowrap;  /* cegah "Cari Guru" patah baris */
}


.hk-nav-link {
  font-size: 0.9rem;
  color: #4b5563;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.hk-nav-link:hover {
  background: rgba(52, 120, 246, 0.08);
  color: #1d4ed8;
}

.hk-nav-link-sm {
  font-size: 0.8rem;
  padding-inline: 6px;
}

/* KANAN: USER AREA */
.hk-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Bell */
.hk-nav-ico-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  position: relative;
}

.hk-nav-ico-btn:hover {
  background: #eef2ff;
}

.hk-bell-icon {
  font-size: 1rem;
}

.hk-bell-dot {
  position: absolute;
  top: 6px;
  right: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f97316;
}

/* User info */
.hk-nav-userbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hk-nav-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #3478f6;
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.hk-nav-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hk-nav-user-name {
  font-size: 0.9rem;
  color: #111827;
}

.hk-nav-user-role {
  font-size: 0.7rem;
  color: #2563eb;
  background: #e0edff;
  border-radius: 999px;
  padding: 2px 8px;
  align-self: flex-start;
}

/* Aksi kanan */
.hk-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hk-nav-admin-group {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-left: 4px;
  border-left: 1px solid #e5e7eb;
}

/* Tombol di navbar */
.hk-btn-nav {
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 999px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hk-nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .hk-nav-left {
    justify-content: space-between;
  }

  .hk-nav-main {
    display: none; /* kalau mau, bisa diganti jadi menu burger nanti */
  }

  .hk-nav-right {
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}
.hk-topbar {
    background:#f9fbff;
    padding:10px 24px;
    border-bottom:1px solid #e5e7eb;
}

.hk-topbar-inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
}

.hk-brand {
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.hk-brand-logo {
    width:42px;
    height:42px;
}

.hk-brand-text {
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.hk-brand-title {
    font-size:20px;
    font-weight:600;
    color:#111;
}

.hk-brand-tag {
    font-size:12px;
    color:#666;
}

.hk-nav {
    display:flex;
    gap:20px;
}

.hk-nav-link {
    color:#333;
    text-decoration:none;
    font-size:15px;
}
.hk-nav-link:hover { color:#2563eb; }

.hk-user-area {
    display:flex;
    align-items:center;
    gap:24px;
}

.hk-user-mini {
    display:flex;
    align-items:center;
    gap:10px;
}

.hk-user-avatar {
    background:#3478f6;
    color:white;
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-weight:600;
}

.hk-user-name { font-weight:600; }
.hk-user-role { font-size:12px;color:#6b7280; }

.hk-btn-logout {
    padding:6px 14px;
    background:white;
    border:1px solid #ddd;
    border-radius:20px;
    text-decoration:none;
}

.hk-btn-login {
    padding:6px 14px;
    border-radius:20px;
    border:1px solid #ccc;
    background:white;
}
/* === HEADER HAIKLAS – PENYEMPURNAAN === */

/* menu publik kiri: cegah "Cari Guru" patah baris */
.hk-nav-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hk-nav-main .hk-nav-link {
  white-space: nowrap;
}

/* area kanan */
.hk-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* tombol ikon (bel) */
.hk-nav-ico-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  position: relative;
}

.hk-nav-ico-btn:hover {
  background: #eef2ff;
}

/* === USER DROPDOWN === */
.hk-user-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.hk-user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.hk-user-trigger:hover,
.hk-user-menu:focus-within .hk-user-trigger {
  background: #eef2ff;
  border-color: #d4d4ff;
}

.hk-user-trigger-caret {
  font-size: 0.65rem;
  color: #6b7280;
}

/* avatar & info pakai styling yang sudah ada */
.hk-nav-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #3478f6;
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.hk-nav-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hk-nav-user-name {
  font-size: 0.85rem;
  color: #111827;
}

.hk-nav-user-role {
  font-size: 0.7rem;
  color: #2563eb;
  background: #e0edff;
  border-radius: 999px;
  padding: 1px 6px;
  align-self: flex-start;
}

/* panel dropdown */
.hk-user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 230px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
  padding: 8px 0;
  display: none;
  z-index: 40;
}

.hk-user-menu:hover .hk-user-dropdown,
.hk-user-menu:focus-within .hk-user-dropdown {
  display: block;
}

.hk-user-dropdown-header {
  padding: 8px 14px 6px;
  border-bottom: 1px solid #f3f4f6;
}

.hk-user-dropdown-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}

.hk-user-dropdown-email {
  font-size: 0.75rem;
  color: #6b7280;
}

.hk-user-dropdown-section {
  padding: 4px 0;
  border-bottom: 1px solid #f3f4f6;
}

.hk-user-dropdown-section:last-of-type {
  border-bottom: none;
}

.hk-user-dropdown-item {
  display: block;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: #374151;
  text-decoration: none;
}

.hk-user-dropdown-item:hover {
  background: #f3f4ff;
  color: #1d4ed8;
}

.hk-user-dropdown-footer {
  padding: 6px 14px 4px;
}

.hk-user-dropdown-logout {
  display: block;
  text-decoration: none;
  font-size: 0.85rem;
  color: #b91c1c;
}

.hk-user-dropdown-logout:hover {
  color: #991b1b;
}
/* =========================
   DASHBOARD LAYOUT UMUM
   ========================= */
.hk-dashboard-common {
  max-width: 1180px;
  margin: 24px auto 40px;
}

/* spasi antar section */
.hk-dashboard-common > * + * {
  margin-top: 18px;
}
/* HERO ATAS (ADMIN, GURU, SISWA) */
.hk-dash-hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 18px;
  margin-bottom: 14px;
}

/* khusus admin bisa sedikit lebih padat */
.hk-dash-hero-admin {
  align-items: stretch;
}

/* panel kiri (gradient) */
.hk-dash-hero-main {
  background: linear-gradient(135deg, #3478f6, #6366f1);
  border-radius: 26px;
  padding: 22px 24px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hk-dash-hero-main h1 {
  font-size: 1.9rem;
  margin: 8px 0 6px;
}

.hk-dash-hero-main p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  opacity: 0.96;
}

.hk-dash-hero-chip,
.hk-dash-hero-meta .hk-pill-soft {
  font-size: 0.75rem;
}

/* badge “Mode Admin” */
.hk-dash-hero-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  color: #e5edff;
}

/* deretan chip Siswa: x, Guru: x, dst */
.hk-dash-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.hk-dash-hero-meta .hk-pill-soft {
  background: rgba(15, 23, 42, 0.12);
  color: #e5edff;
}

/* panel kanan ringkasan permintaan les */
.hk-dash-hero-side {
  display: flex;
  align-items: stretch;
}

.hk-dash-hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 16px 18px 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hk-dash-hero-card-header {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 6px;
}

/* empat angka kecil di hero kanan */
.hk-dash-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  margin: 4px 0 10px;
}

.hk-dash-stat-label {
  font-size: 0.7rem;
  color: #6b7280;
}

.hk-dash-stat-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

/* teks “Gunakan menu Mapel dan Pengguna…” */
.hk-dash-hero-rating-text {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.35;
}
/* GRID KPI KECIL */
.hk-dash-kpi {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.hk-dash-kpi-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hk-dash-kpi-icon {
  font-size: 1.25rem;
}

.hk-dash-kpi-label {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 2px;
}

.hk-dash-kpi-value {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.hk-dash-kpi-sub {
  font-size: 0.74rem;
  color: #9ca3af;
}
/* GRID BAWAH: tabel & kolom samping */
.hk-dash-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 14px;
}

.hk-dash-side-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hk-dash-mini-list {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 0;
}

.hk-dash-mini-list li + li {
  margin-top: 4px;
}

.hk-dash-mini-list a {
  font-size: 0.85rem;
  text-decoration: none;
  color: #2563eb;
}

.hk-dash-mini-list a:hover {
  text-decoration: underline;
}

/* tabel di dashboard sedikit dipadatkan */
.hk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.hk-table th,
.hk-table td {
  padding: 8px 10px;
}

.hk-table thead th {
  background: #f3f4ff;
  font-weight: 600;
}
/* Tombol icon di tabel admin (Edit / Hapus) */
.hk-table-actions {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.hk-icon-btn {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-decoration: none;
  color: #4b5563;
  cursor: pointer;
}

.hk-icon-btn:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #1d4ed8;
}

.hk-icon-btn.hk-icon-danger:hover {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}
/* Form aksi per baris di admin_pengguna */
.hk-user-row-form {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* Select kecil di tabel */
.hk-select-sm {
  padding: 2px 24px 2px 8px;
  height: 28px;
  font-size: 0.8rem;
}

/* Reuse icon button dari mapel, plus warna warning */
.hk-table-actions {
  display: flex;
  justify-content: flex-start;
}

.hk-icon-btn {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-decoration: none;
  color: #4b5563;
  cursor: pointer;
}

.hk-icon-btn:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #1d4ed8;
}

.hk-icon-btn.hk-icon-warning:hover {
  background: #fef9c3;
  border-color: #facc15;
  color: #92400e;
}
/* Header kecil di halaman chat */
.hk-chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

/* Tombol back bulat */
.hk-btn-icon-back {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111827;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.hk-btn-icon-back:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #1d4ed8;
}

.hk-chat-card {
  padding: 18px 20px 16px;
}

.hk-chat-box {
  background: #f9fafb;
  border-radius: 18px;
  padding: 14px 16px;
  max-height: 420px;
  overflow-y: auto;
  margin-bottom: 8px;
}

.chat-empty {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* bubble dasar */
.chat-bubble {
  max-width: 70%;
  padding: 8px 10px;
  border-radius: 16px;
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.chat-other {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.chat-me {
  margin-left: auto;
  background: #3478f6;
  color: #ffffff;
}

.chat-msg {
  white-space: pre-wrap;
}

.chat-meta {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 4px;
  font-size: 0.7rem;
  opacity: 0.9;
}

.chat-time {
  opacity: 0.9;
}

.chat-status {
  font-size: 0.75rem;
}

/* typing indicator */
.typing-ind {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 6px;
}

/* form chat */
.hk-chat-form {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.hk-chat-form textarea.hk-input {
  flex: 1;
  resize: none;
}
.chat-attach-preview {
  margin-bottom: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f3f6ff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
}

.chat-attach-thumb {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  background: #dde5ff;
}

.chat-attach-name {
  font-size: 12px;
  color: #182238;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.chat-attach-remove {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  color: #999;
}
.chat-attach-remove:hover {
  color: #ff4d4f;
}
/* ==== CHAT ATTACHMENT PREVIEW ==== */
.chat-attach-preview {
  margin-bottom: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f3f6ff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
}

.chat-attach-thumb {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  background: #dde5ff;
}

.chat-attach-thumb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #3478f6;
}

.chat-attach-name {
  font-size: 12px;
  color: #182238;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.chat-attach-remove {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  color: #999;
}
.chat-attach-remove:hover {
  color: #ff4d4f;
}

.chat-attach-error {
  margin-top: 4px;
  font-size: 11px;
  color: #d93025;
}

/* ==== UPLOAD PROGRESS ==== */
.chat-upload-progress {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #182238;
}

.chat-upload-bar-wrap {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: #e1e6ff;
  overflow: hidden;
}

.chat-upload-bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #3478f6, #6a9bff);
  transition: width 0.15s ease-out;
}
/* ==== CHAT ATTACHMENT PREVIEW ==== */
.chat-attach-preview {
  margin-bottom: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f6ff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
}

.chat-attach-thumb {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  object-fit: cover;
  background: #dde5ff;
}

.chat-attach-thumb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #3478f6;
}

.chat-attach-name {
  font-size: 11px;
  color: #182238;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
}

.chat-attach-remove {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  color: #999;
}
.chat-attach-remove:hover {
  color: #ff4d4f;
}

.chat-attach-error {
  margin-top: 2px;
  font-size: 11px;
  color: #d93025;
}

/* ==== UPLOAD PROGRESS ==== */
.chat-upload-progress {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #182238;
}

.chat-upload-bar-wrap {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: #e1e6ff;
  overflow: hidden;
}

.chat-upload-bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #3478f6, #6a9bff);
  transition: width 0.15s ease-out;
}

/* link lampiran di bubble chat */
.chat-file a {
  font-size: 11px;
}
/* ==== CHAT BUBBLE (perbaikan untuk lampiran) ==== */

/* Bubble pesan dari user sendiri */
.chat-me {
  max-width: 70%;                 /* sebelumnya terlalu besar (100%) */
  margin-left: auto;
  margin-right: 6px;
  margin-top: 6px;
  border-radius: 14px;
  padding: 10px 14px;
}

/* Bubble pesan dari lawan bicara */
.chat-other {
  max-width: 70%;
  margin-right: auto;
  margin-left: 6px;
  margin-top: 6px;
  border-radius: 14px;
  padding: 10px 14px;
}

/* ==== Khusus lampiran dalam bubble ==== */
.chat-file {
  margin-top: 6px;
  margin-bottom: 4px;
  background: rgba(255,255,255,0.25);
  padding: 6px 10px;
  border-radius: 10px;
  display: inline-flex; 
  align-items: center;
  gap: 6px;
  max-width: 90%;
  overflow: hidden;
}

.chat-file a {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
  display: inline-block;
}

/* Ikon pdf/doc/png berbeda warna */
.chat-file-icon {
  font-size: 14px;
  font-weight: 700;
}

.chat-file-icon.pdf {
  color: #ff4d4f;
}
.chat-file-icon.doc {
  color: #3478f6;
}
.chat-file-icon.img {
  color: #0bbf78;
}
/* --- Reply icon ala WhatsApp --- */
.chat-bubble {
  position: relative;
}

/* default: disembunyikan */
.chat-reply-btn {
  position: absolute;
  bottom: 4px;
  left: 8px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.04);
  font-size: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

/* untuk bubble "me", ikon di kanan */
.chat-row.me .chat-reply-btn {
  left: auto;
  right: 8px;
}

/* muncul saat baris chat di-hover */
.chat-row:hover .chat-reply-btn {
  opacity: 1;
  transform: translateY(0);
}

/* hover state */
.chat-reply-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* supaya tidak ganggu teks */
.chat-text {
  padding-bottom: 6px; /* beri sedikit ruang untuk icon di bawah */
}
/* Divider tanggal di chat */
.hk-chat-date-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
  font-size: 12px;
  color: #9aa4c1;
  position: relative;
}

.hk-chat-date-divider::before,
.hk-chat-date-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.08));
}

.hk-chat-date-divider::after {
  background: linear-gradient(to left, transparent, rgba(0,0,0,0.08));
}

.hk-chat-date-divider > span {
  margin: 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f5f7ff;
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.08);
  font-weight: 500;
}
/* Wallet page */
.wallet-page .wallet-summary-card {
  box-shadow: 0 14px 45px rgba(0,0,0,0.12);
}

.wallet-amount-main {
  font-size: 2.1rem;
  font-weight: 700;
}

.wallet-amount-sub {
  font-size: 0.95rem;
}

.wallet-amount-plus {
  font-weight: 600;
}

.wallet-amount-minus {
  font-weight: 600;
}

/* Support page */
.support-page .support-info-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
}
.guru-schedule-page .hk-stat-value {
  font-size: 1.8rem;
  font-weight: 700;
}

.hk-card-soft {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

/* Week nav bar */
.hk-week-nav-bar {
  margin-top: 0.75rem;
}

.hk-week-range-text {
  font-weight: 600;
}

/* Empty state jadwal */
.hk-empty-wide {
  margin-top: 1rem;
}

.hk-empty-icon {
  font-size: 2.4rem;
}

.hk-empty-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.hk-empty-sub {
  color: rgba(0, 0, 0, 0.7);
}

/* Day cards */
.hk-day-card {
  min-height: 220px;
}

.hk-day-header {
  margin-bottom: 0.5rem;
}

.hk-day-name {
  font-weight: 600;
}

.hk-day-date {
  font-size: 0.8rem;
  opacity: 0.8;
}

.hk-day-empty {
  padding-top: 0.5rem;
  color: rgba(0, 0, 0, 0.6);
}

/* Schedule list */
.hk-schedule-list {
  margin: 0;
  padding: 0;
}

.hk-schedule-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}

.hk-schedule-item.is-done {
  opacity: 0.65;
}

.hk-schedule-time {
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 70px;
}

.hk-schedule-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.hk-schedule-sub {
  color: rgba(0, 0, 0, 0.7);
}

.hk-schedule-actions {
  text-align: right;
  margin-left: auto;
}
/* =========================================
   GURU SCHEDULE – PREMIUM UI
   ========================================= */

.guru-schedule-page {
  padding-bottom: 3rem;
}

/* HERO */
.hk-schedule-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem 2rem;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 55%),
              linear-gradient(120deg, #2f80ff 0%, #5a8cff 35%, #7f53ff 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  margin-bottom: 1.75rem;
}

.hk-schedule-hero-left {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 520px;
}

.hk-schedule-hero-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.hk-schedule-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.hk-schedule-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.hk-schedule-subtitle {
  font-size: 0.9rem;
  margin: 0.35rem 0 0.75rem;
  max-width: 480px;
  opacity: 0.95;
}

.hk-schedule-week-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  font-size: 0.8rem;
}

/* STAT CARDS DI HERO */
.hk-schedule-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  min-width: 260px;
}

.hk-schedule-stat-card {
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.hk-schedule-stat-label {
  font-size: 0.75rem;
  opacity: 0.9;
}

.hk-schedule-stat-value {
  margin-top: 0.25rem;
  font-size: 1.6rem;
  font-weight: 700;
}

/* WEEK NAV */
.hk-schedule-nav {
  margin-bottom: 1.25rem;
}

.hk-schedule-nav-card {
  border-radius: 1.25rem;
}

.hk-schedule-nav-center {
  text-align: center;
}

.hk-schedule-nav-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.hk-schedule-nav-range {
  font-weight: 600;
  font-size: 0.95rem;
}

/* EMPTY STATE */
.hk-schedule-empty-section {
  margin-top: 0.5rem;
}

.hk-schedule-empty-card {
  border-radius: 1.5rem;
}

.hk-schedule-empty-card .hk-card-body {
  padding: 2.25rem 1.75rem 2.5rem;
}

.hk-empty-icon {
  font-size: 2.2rem;
}

.hk-empty-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.hk-empty-sub {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.7);
}

/* WEEK GRID HARI */
.hk-schedule-week-grid {
  margin-top: 1.5rem;
}

.hk-day-card {
  min-height: 230px;
  border-radius: 1.25rem;
}

.hk-day-header {
  margin-bottom: 0.75rem;
}

.hk-day-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.hk-day-date {
  font-size: 0.8rem;
  opacity: 0.7;
}

.hk-day-empty {
  padding-top: 0.5rem;
  color: rgba(0,0,0,0.6);
}

/* SCHEDULE ITEMS */
.hk-schedule-list {
  margin: 0;
  padding: 0;
}

.hk-schedule-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.hk-schedule-item:last-child {
  margin-bottom: 0;
}

.hk-schedule-item.is-done {
  opacity: 0.6;
}

.hk-schedule-time {
  font-size: 0.78rem;
  font-weight: 600;
  min-width: 70px;
}

.hk-schedule-main {
  flex: 1;
}

.hk-schedule-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.hk-schedule-sub {
  color: rgba(0,0,0,0.7);
}

.hk-schedule-actions {
  text-align: right;
  margin-left: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hk-schedule-hero {
    padding: 1.3rem 1.25rem 1.7rem;
  }

  .hk-schedule-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hk-schedule-hero {
    flex-direction: column;
  }

  .hk-schedule-hero-stats {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hk-schedule-week-grid .hk-grid-3 {
    grid-template-columns: 1fr;
  }
}
/* Guru Schedule layout */
.guru-schedule-page .guru-schedule-wrapper {
  max-width: 1080px;
  margin: 0 auto 2.5rem;
}

/* Sedikit touch untuk stat card di jadwal */
.guru-schedule-page .guru-schedule-stats .hk-card {
  border-radius: 1.25rem;
}

/* Grid hari – biar tetap rapi di desktop */
.guru-schedule-page .guru-schedule-days.hk-grid.hk-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Responsive: di layar kecil jadwal jadi 1 kolom */
@media (max-width: 768px) {
  .guru-schedule-page .guru-schedule-days.hk-grid.hk-grid-3 {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   GURU SCHEDULE – LAYOUT & STYLE
   =============================== */

.guru-schedule-page .guru-schedule-wrapper {
  max-width: 1080px;
  margin: 0 auto 2.5rem;
}

/* Stat card di jadwal */
.guru-schedule-page .hk-stat-value {
  font-size: 1.7rem;
  font-weight: 700;
}

/* Grid minggu – rapih, tidak melebar */
.gs-week-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Kartu hari */
.gs-day-card {
  border-radius: 18px;
  min-height: 180px;
}

.gs-day-header {
  margin-bottom: 0.75rem;
}

.gs-day-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.gs-day-date {
  font-size: 0.8rem;
  opacity: 0.7;
}

.gs-day-empty {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.55);
}

/* List sesi dalam hari */
.gs-session-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gs-session {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
}

.gs-session:first-child {
  border-top: none;
}

.gs-session.is-done {
  opacity: 0.65;
}

.gs-session-time {
  font-size: 0.78rem;
  font-weight: 600;
  min-width: 80px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.gs-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2f80ff;
}

.gs-session-main {
  flex: 1;
}

.gs-session-mapel {
  font-size: 0.9rem;
  font-weight: 600;
}

.gs-session-meta {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.65);
}

.gs-session-right {
  text-align: right;
  margin-left: auto;
}

.gs-session-form {
  margin-top: 0.15rem;
}

/* Status pill */
.gs-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}

.gs-status-active {
  background: rgba(47, 128, 237, 0.07);
  color: #2f80ed;
}

.gs-status-done {
  background: rgba(39, 174, 96, 0.08);
  color: #27ae60;
}

/* Responsive: di layar kecil grid jadi 1 kolom */
@media (max-width: 768px) {
  .guru-schedule-page .guru-schedule-wrapper {
    padding-inline: 0.5rem;
  }
}
/* Wrapper & stats spacing */
.guru-schedule-page .guru-schedule-wrapper {
  max-width: 1080px;
  margin: 0 auto 2.5rem;
}

.guru-schedule-page .guru-schedule-stats {
  margin-bottom: 2rem; /* jeda setelah Total Sesi / Sesi Akan Datang / Sesi Selesai */
}

/* Week nav: satu baris */
.gs-week-card {
  margin-bottom: 1.5rem;
}

.gs-week-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.gs-week-label {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Grid minggu & kartu hari */
.gs-week-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.gs-day-card {
  border-radius: 18px;
  min-height: 180px;
}

.gs-day-header {
  margin-bottom: 0.75rem;
}

.gs-day-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.gs-day-date {
  font-size: 0.8rem;
  opacity: 0.7;
}

.gs-day-empty {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.55);
}

/* List sesi */
.gs-session-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gs-session {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
}

.gs-session:first-child {
  border-top: none;
}

.gs-session.is-done {
  opacity: 0.65;
}

.gs-session-time {
  font-size: 0.78rem;
  font-weight: 600;
  min-width: 80px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.gs-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2f80ff;
}

.gs-session-main {
  flex: 1;
}

.gs-session-mapel {
  font-size: 0.9rem;
  font-weight: 600;
}

.gs-session-meta {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.65);
}

.gs-session-right {
  text-align: right;
  margin-left: auto;
}

.gs-session-form {
  margin-top: 0.15rem;
}

/* Status pill & button kecil */
.gs-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.gs-status-active {
  background: rgba(47, 128, 237, 0.07);
  color: #2f80ed;
}

.gs-status-done {
  background: rgba(39, 174, 96, 0.08);
  color: #27ae60;
}

/* button tandai selesai lebih kecil */
.gs-btn-done {
  padding: 0.12rem 0.5rem;
  font-size: 0.7rem;
  border-radius: 999px;
}

/* Responsive */
@media (max-width: 768px) {
  .guru-schedule-page .guru-schedule-wrapper {
    padding-inline: 0.5rem;
  }
}
/* ======================================
   WALLET GURU – PENDAPATAN & PENCAIRAN
   ====================================== */

.wallet-page .wallet-wrapper {
  max-width: 960px;
  margin: 0 auto 2.5rem;
}

/* Stat cards */
.wallet-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.wallet-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.25rem;
}

.wallet-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
}

.wallet-stat-hint {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.25rem;
}

/* Alerts */
.hk-alert {
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hk-alert-danger {
  background: #ffe9e9;
  color: #b60020;
}

.hk-alert-success {
  background: #e9f9ef;
  color: #137a3d;
}

/* Form ajukan pencairan */
.wallet-form-card {
  margin-bottom: 1.75rem;
  border-radius: 18px;
}

.wallet-form-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.wallet-section-title {
  font-size: 1rem;
  font-weight: 600;
}

.wallet-section-sub {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 0;
}

.wallet-form-badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(47, 128, 237, 0.07);
  color: #2f80ed;
  white-space: nowrap;
}

.wallet-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: flex-end;
}

.wallet-form-input {
  flex: 1 1 220px;
}

.wallet-input-group {
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  overflow: hidden;
  background: #fff;
}

.wallet-input-prefix {
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.03);
}

.wallet-input-group input[type="number"] {
  border: none;
  outline: none;
  padding: 0.4rem 0.6rem;
  width: 100%;
  font-size: 0.9rem;
}

.wallet-input-group input[type="number"]::-webkit-outer-spin-button,
.wallet-input-group input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.wallet-input-hint {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.55);
  margin-top: 0.25rem;
}

.wallet-form-action {
  flex: 0 0 210px;
}

.wallet-submit-btn {
  width: 100%;
  border-radius: 999px;
}

.wallet-form-note {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.35rem;
}

/* History table */
.wallet-history-card {
  border-radius: 18px;
}

.wallet-empty-text {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.65);
}

.wallet-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.wallet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.wallet-table thead tr {
  background: rgba(0, 0, 0, 0.03);
}

.wallet-table th,
.wallet-table td {
  padding: 0.5rem 0.65rem;
  text-align: left;
}

.wallet-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.015);
}

.wallet-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}

.wallet-badge-pending {
  background: rgba(247, 202, 67, 0.16);
  color: #b88700;
}

.wallet-badge-success {
  background: rgba(39, 174, 96, 0.12);
  color: #1b8c53;
}

.wallet-badge-danger {
  background: rgba(231, 76, 60, 0.1);
  color: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
  .wallet-page .wallet-wrapper {
    padding-inline: 0.5rem;
  }

  .wallet-form-row {
    align-items: stretch;
  }

  .wallet-form-action {
    flex-basis: 100%;
  }

  .wallet-submit-btn {
    width: 100%;
  }
}
/* ==================================
   PUSAT BANTUAN / SUPPORT CENTER
   ================================== */

.support-page .support-wrapper {
  max-width: 1080px;
  margin: 0 auto 2.5rem;
}

/* Header */
.support-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.support-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFF;
  margin-bottom: 0.25rem;
}

.support-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: #ffffff; /* putih biar kontras dengan biru */
  color: #1e824c;
  border: 1px solid rgba(46, 204, 113, 0.8);
  box-shadow: 0 6px 14px rgba(22, 160, 133, 0.25);
  white-space: nowrap;
}

.support-dot-online {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #2ecc71;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.25);
}

/* Biar posisi badge lebih enak di mobile */
@media (max-width: 768px) {
  .support-header-top {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0.5rem;
  }
}


.support-dot-online {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2ecc71;
}

/* Layout 2 kolom */
.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  gap: 1.25rem;
}

.support-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 76, 129, 0.06);
}

.support-card-title {
  font-size: 1.05rem;
  font-weight: 600;
}

.support-card-sub {
  font-size: 0.86rem;
  color: rgba(0, 0, 0, 0.68);
}

.support-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.support-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.support-label {
  font-size: 0.85rem;
  font-weight: 500;
}

.support-field select,
.support-field input[type="text"],
.support-field textarea {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  padding: 0.45rem 0.7rem;
  font-size: 0.9rem;
}

.support-field textarea {
  resize: vertical;
}

/* Footer form */
.support-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.support-footer-note {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.6);
}

.support-submit-btn {
  border-radius: 999px;
  padding-inline: 1.4rem;
}

/* Side card */
.support-side-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
}

.support-side-section + .support-side-section {
  margin-top: 1rem;
}

.support-side-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.support-chip {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(52, 152, 219, 0.12);
  color: #2980b9;
}

.support-tips-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.84rem;
  color: rgba(0, 0, 0, 0.8);
}

.support-tips-list li {
  margin-bottom: 0.25rem;
}

.support-divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  margin: 1rem 0 0.8rem;
}

.support-side-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
}

.support-status-text {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.7);
}

.support-status-list {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  font-size: 0.8rem;
}

.support-status-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.support-status-desc {
  color: rgba(0, 0, 0, 0.7);
}

/* Badge status */
.support-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.support-badge-open {
  background: rgba(52, 152, 219, 0.1);
  color: #2980b9;
}

.support-badge-progress {
  background: rgba(241, 196, 15, 0.16);
  color: #b88700;
}

.support-badge-closed {
  background: rgba(39, 174, 96, 0.16);
  color: #1b8c53;
}

.support-mini-faq {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 14px;
  padding: 0.75rem 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {
  .support-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .support-page .support-wrapper {
    padding-inline: 0.5rem;
  }

  .support-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-submit-btn {
    width: 100%;
    text-align: center;
  }
}
/* ==============================
   HELP CENTER / PUSAT BANTUAN
   ============================== */
.help-page .help-wrapper {
  max-width: 1080px;
  margin: 0 auto 2.5rem;
}

/* Header */
.help-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.help-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.25rem;
}

.help-header-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: #ffffff;
  color: #1e824c;
  border: 1px solid rgba(46, 204, 113, 0.8);
  box-shadow: 0 6px 14px rgba(22, 160, 133, 0.25);
  white-space: nowrap;
}

.help-header-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #2ecc71;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.25);
}

/* Quick links */
.help-quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.help-quick-card {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 25px rgba(15, 76, 129, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: inherit;
}

.help-quick-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 76, 129, 0.09);
}

.help-quick-icon {
  font-size: 1.4rem;
}

.help-quick-title {
  font-weight: 600;
}

.help-quick-sub {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.68);
}

/* Section card */
.help-section-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.06);
  margin-bottom: 1.2rem;
}

.help-section-header h2 {
  font-size: 1.05rem;
  font-weight: 600;
}

.help-section-header p {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.68);
  margin-bottom: 0.4rem;
}

/* FAQ / details */
.help-faq-list {
  margin-top: 0.6rem;
}

.help-faq {
  border-radius: 14px;
  padding: 0.35rem 0.6rem;
}

.help-faq + .help-faq {
  margin-top: 0.1rem;
}

/* hilangkan marker default */
.help-faq summary::-webkit-details-marker {
  display: none;
}

.help-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0.25rem;
  border-radius: 10px;
}

.help-faq summary::before {
  content: '▸';
  font-size: 0.75rem;
  margin-top: 0.1rem;
  color: rgba(0, 0, 0, 0.6);
  transition: transform 0.15s ease;
}

.help-faq[open] summary::before {
  transform: rotate(90deg);
}

.help-faq summary:hover {
  background: rgba(0, 0, 0, 0.03);
}

.help-faq-body {
  padding: 0.2rem 0.25rem 0.5rem 1.2rem;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.8);
}

.help-faq-body p {
  margin-bottom: 0.4rem;
}

.help-faq-body ul,
.help-faq-body ol {
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
}

/* CTA akhir */
.help-cta-card {
  background: linear-gradient(135deg, #f5f9ff, #ffffff);
}

.help-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.help-cta-content p {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.72);
}

.help-cta-btn {
  border-radius: 999px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
  .help-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .help-page .help-wrapper {
    padding-inline: 0.5rem;
  }

  .help-header-top {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .help-cta-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .help-cta-btn {
    width: 100%;
    text-align: center;
  }
}
/* ==============================
   ADMIN - PAYMENTS LIST
   ============================== */

.admin-pay-page .admin-pay-wrapper {
  max-width: 1080px;
  margin: 0 auto 2.5rem;
}

/* Stat cards */
.pay-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.pay-stat-card {
  border-radius: 18px;
}

.pay-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.25rem;
}

.pay-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
}

.pay-stat-value-mini {
  font-size: 0.95rem;
  font-weight: 600;
}

.pay-stat-hint {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.25rem;
}

.pay-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.05rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  margin-left: 0.25rem;
}

.pay-chip-pending {
  background: rgba(241, 196, 15, 0.16);
  color: #b88700;
}

.pay-chip-expired {
  background: rgba(149, 165, 166, 0.2);
  color: #7f8c8d;
}

/* Filter card */
.pay-filter-card {
  border-radius: 18px;
  margin-bottom: 1.2rem;
}

.pay-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 0.75rem;
  align-items: end;
}

.pay-filter-field label {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  display: block;
}

.pay-filter-field select,
.pay-filter-field input[type="text"] {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem;
}

.pay-filter-actions {
  display: flex;
  gap: 0.4rem;
}

/* Table */
.pay-table-card {
  border-radius: 18px;
}

.pay-table-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
}

.pay-table-title {
  font-size: 1rem;
  font-weight: 600;
}

.pay-table-sub {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.65);
}

.pay-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.pay-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.pay-table thead tr {
  background: rgba(0, 0, 0, 0.03);
}

.pay-table th,
.pay-table td {
  padding: 0.45rem 0.6rem;
  text-align: left;
  vertical-align: top;
}

.pay-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.015);
}

.pay-empty-text {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.7);
}

/* User cell */
.pay-user-name {
  font-weight: 500;
}

.pay-user-email {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.7);
}

/* Status badge */
.pay-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

.pay-badge-paid {
  background: rgba(39, 174, 96, 0.16);
  color: #1b8c53;
}

.pay-badge-pending {
  background: rgba(241, 196, 15, 0.16);
  color: #b88700;
}

.pay-badge-expired {
  background: rgba(149, 165, 166, 0.2);
  color: #7f8c8d;
}

.pay-badge-failed {
  background: rgba(231, 76, 60, 0.16);
  color: #c0392b;
}

.pay-badge-cancelled {
  background: rgba(127, 140, 141, 0.18);
  color: #7f8c8d;
}

/* Responsive */
@media (max-width: 900px) {
  .pay-filter-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pay-filter-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .admin-pay-page .admin-pay-wrapper {
    padding-inline: 0.5rem;
  }
}
.pay-table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.pay-export-btn {
  border-radius: 999px;
  font-size: 0.8rem;
  padding-inline: 0.9rem;
}

.pay-table tbody tr {
  cursor: pointer;
  transition: background 0.12s ease;
}

.pay-table tbody tr:hover {
  background: rgba(46, 134, 222, 0.06);
}
/* ==============================
   ADMIN - PAYMENT DETAIL
   ============================== */

.admin-pay-detail-page .admin-pay-wrapper {
  max-width: 1080px;
  margin: 0 auto 2.5rem;
}

.admin-pay-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.admin-pay-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  gap: 1rem;
}

.admin-pay-main-card {
  border-radius: 18px;
}

.admin-pay-log-card {
  border-radius: 18px;
}

.admin-pay-main-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.admin-pay-amount {
  font-size: 1.8rem;
  font-weight: 700;
}

.admin-pay-sub {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.65);
}

.admin-pay-status-block {
  text-align: right;
}

.admin-pay-status-badge {
  font-size: 0.8rem;
}

.admin-pay-detail-section {
  margin-top: 0.9rem;
}

.admin-pay-detail-section h2 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.admin-pay-dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem 1.5rem;
  font-size: 0.85rem;
}

.admin-pay-dl dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.6);
}

.admin-pay-dl dd {
  margin: 0;
}

.admin-pay-meta,
.admin-pay-log-meta-json {
  font-size: 0.78rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  padding: 0.5rem 0.6rem;
  max-height: 260px;
  overflow: auto;
}

/* log card */
.admin-pay-log-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.admin-pay-log-sub {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0.5rem;
}

.admin-pay-log-empty {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.7);
}

.admin-pay-log-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.4rem;
  max-height: 430px;
  overflow-y: auto;
}

.admin-pay-log-item {
  border-radius: 12px;
  padding: 0.45rem 0.55rem;
  background: rgba(0, 0, 0, 0.02);
}

.admin-pay-log-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.admin-pay-log-level {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(149, 165, 166, 0.2);
  color: #7f8c8d;
}

.admin-pay-log-time {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.6);
}

.admin-pay-log-message {
  font-size: 0.82rem;
}

/* warna per level */
.admin-pay-log-level-info .admin-pay-log-level,
.admin-pay-log-item.admin-pay-log-level-info .admin-pay-log-level {
  background: rgba(52, 152, 219, 0.15);
  color: #2980b9;
}

.admin-pay-log-item.admin-pay-log-level-warning .admin-pay-log-level {
  background: rgba(241, 196, 15, 0.18);
  color: #b88700;
}

.admin-pay-log-item.admin-pay-log-level-error .admin-pay-log-level {
  background: rgba(231, 76, 60, 0.18);
  color: #c0392b;
}

@media (max-width: 900px) {
  .admin-pay-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .admin-pay-detail-page .admin-pay-wrapper {
    padding-inline: 0.5rem;
  }

  .admin-pay-detail-header {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .admin-pay-status-block {
    text-align: left;
  }
}
/* ==============================
   ADMIN - WITHDRAW LIST
   ============================== */

.admin-wd-page .admin-wd-wrapper {
  max-width: 1080px;
  margin: 0 auto 2.5rem;
}

@media (max-width: 768px) {
  .admin-wd-page .admin-wd-wrapper {
    padding-inline: 0.5rem;
  }
}
/* ==============================
   ADMIN - TICKETS BANTUAN
   ============================== */

.admin-ticket-page .admin-ticket-wrapper {
  max-width: 1080px;
  margin: 0 auto 2.5rem;
}

@media (max-width: 768px) {
  .admin-ticket-page .admin-ticket-wrapper {
    padding-inline: 0.5rem;
  }
}

/* Header kecil di atas title (BANTUAN HAIKLAS / Admin Panel) */
.hk-page-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .25rem;
}

.hk-page-eyebrow {
  font-size: 0.75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Chip kecil "Admin Panel" (bisa dipakai di halaman admin lain juga) */
.hk-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.35);
  color: #e5f0ff;
}

.hk-chip-admin {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
}

/* Tabel tiket: baris bisa diklik */
.pay-table-clickable tbody tr.ticket-row {
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.08s ease;
}

.pay-table-clickable tbody tr.ticket-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Subjek tiket: potong pakai ellipsis kalau kepanjangan */
.ticket-subject-cell {
  max-width: 340px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sedikit rapikan sub-judul di header tabel */
.pay-table-sub {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
/* ===================================
   Notifikasi di navbar
   =================================== */

.hk-nav-bell {
  position: relative;
}

.hk-bell-icon {
  font-size: 1.2rem;
}

/* Badge angka di pojok icon */
.hk-bell-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ff4b5c;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px rgba(53, 111, 255, 0.2);
}

/* Kalau mau gaya dot saja (tanpa angka), hk-bell-dot bisa dipakai nanti */
.hk-bell-dot {
  position: absolute;
  top: 2px;
  right: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4b5c;
  display: none;
}
/* ===================================
   Pusat Notifikasi
   =================================== */

.notif-tabs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: .75rem;
  flex-wrap: wrap;
}

.notif-tabs-left {
  display: inline-flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.notif-tab {
  padding: .4rem .9rem;
  border-radius: 999px;
  font-size: .9rem;
  background: rgba(255, 255, 255, 0.08);
  color: #0b1120;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .08s ease;
}

.notif-tab:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.notif-tab-active {
  background: #ffffff;
  color: #1d4ed8;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16);
}

.notif-count-pill {
  display: inline-flex;
  min-width: 18px;
  height: 18px;
  justify-content: center;
  align-items: center;
  padding: 0 4px;
  margin-left: 6px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
}

.notif-mark-form {
  margin-left: auto;
}

.notif-mark-all[disabled] {
  opacity: .5;
  cursor: default;
}

.notif-list {
  margin-top: .75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.notif-item {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.notif-item-unread {
  border-left: 4px solid #3b82f6;
  background: #eff6ff;
}

.notif-title {
  font-size: .95rem;
  margin: 0 0 .25rem;
}

.notif-body {
  margin: 0;
  font-size: .9rem;
  color: #4b5563;
}

.notif-meta {
  margin-top: .35rem;
  font-size: .8rem;
  color: #6b7280;
}

.notif-link {
  align-self: center;
  white-space: nowrap;
}

/* Responsif */
@media (max-width: 640px) {
  .notif-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .notif-link {
    align-self: flex-start;
  }
}
/* ===========================
   Permintaan Les – Guru
   =========================== */

.guru-req-page .hk-page-header {
  margin-bottom: 1.5rem;
}

.guru-req-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.guru-req-summary-card {
  padding: 0;
}

.guru-req-summary-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6b7280;
  margin-bottom: .25rem;
}

.guru-req-summary-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
}

.guru-req-summary-hint {
  font-size: .85rem;
  color: #6b7280;
  margin-top: .25rem;
}

.guru-req-empty-profile {
  margin-top: 1rem;
}

.guru-req-empty-title {
  margin: 0 0 .5rem;
}

.guru-req-empty-text {
  margin: 0 0 .75rem;
  color: #4b5563;
  max-width: 420px;
}

.guru-req-list-card {
  margin-top: .5rem;
}

.guru-req-list-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.guru-req-list-title {
  margin: 0 0 .25rem;
}

.guru-req-list-sub {
  margin: 0;
  font-size: .9rem;
  color: #6b7280;
}

.guru-req-empty-list {
  padding: 1.5rem;
  text-align: left;
}

.guru-req-empty-list p {
  margin: 0;
}

.guru-req-empty-list-sub {
  margin-top: .35rem;
  font-size: .9rem;
  color: #6b7280;
}

.guru-req-table-wrapper {
  overflow-x: auto;
}

.guru-req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.guru-req-table th,
.guru-req-table td {
  padding: .6rem .75rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}

.guru-req-table th {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #6b7280;
  background: #f9fafb;
}

.guru-req-row:hover {
  background: #f3f4ff;
}

.guru-req-row-focus {
  background: #eef2ff;
  box-shadow: 0 0 0 2px #3b82f6;
}

.guru-req-siswa-name {
  font-weight: 600;
}

.guru-req-siswa-email {
  font-size: .8rem;
  color: #6b7280;
}

/* Status badge */
.guru-req-status {
  display: inline-flex;
  align-items: center;
  padding: .15rem .5rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 500;
}

.guru-req-status-pending {
  background: #fef3c7;
  color: #92400e;
}

.guru-req-status-approved {
  background: #dcfce7;
  color: #166534;
}

.guru-req-status-rejected {
  background: #fee2e2;
  color: #b91c1c;
}

.guru-req-status-cancelled {
  background: #e5e7eb;
  color: #374151;
}

.guru-req-status-completed {
  background: #e0f2fe;
  color: #075985;
}

@media (max-width: 640px) {
  .guru-req-list-head {
    flex-direction: column;
  }
}
/* ===========================
   Permintaan Les – Guru
   =========================== */

.guru-req-page {
  max-width: 1080px;        /* ⬅️ batasi lebar */
  margin: 0 auto;           /* ⬅️ center di tengah layar */
  padding: 1.5rem 0 2.5rem;
}

/* header halaman */
.guru-req-page .hk-page-header {
  margin-bottom: 1.5rem;
}

/* ringkasan atas */
.guru-req-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.guru-req-summary-card {
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

/* kartu daftar permintaan */
.guru-req-list-card {
  margin-top: .5rem;
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.guru-req-table-wrapper {
  overflow-x: auto;
}

/* yang lain (status badge, row hover, dll) boleh dibiarkan seperti kemarin */
/* ===========================
   Layout container sempit
   =========================== */
.hk-container-narrow {
  max-width: 1080px;
  margin: 0 auto;
}

/* ===========================
   Permintaan Les – Guru
   =========================== */

.guru-req-page {
  padding: 1.5rem 0 2.5rem;
}

/* stat cards di atas */
.guru-req-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.guru-req-stat-card {
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.guru-req-stat-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6b7280;
  margin-bottom: .25rem;
}

.guru-req-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
}

.guru-req-stat-hint {
  font-size: .85rem;
  color: #6b7280;
  margin-top: .25rem;
}

/* kartu daftar permintaan */
.guru-req-list-card {
  margin-top: .5rem;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.guru-req-list-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.guru-req-list-title {
  margin: 0 0 .25rem;
}

.guru-req-list-sub {
  margin: 0;
  font-size: .9rem;
  color: #6b7280;
}

/* tabel */
.guru-req-table-wrapper {
  overflow-x: auto;
}

.guru-req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.guru-req-table th,
.guru-req-table td {
  padding: .6rem .75rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}

.guru-req-table th {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #6b7280;
  background: #f9fafb;
}

.guru-req-row:hover {
  background: #f3f4ff;
}

.guru-req-row-focus {
  background: #eef2ff;
  box-shadow: 0 0 0 2px #3b82f6;
}

/* info siswa */
.guru-req-siswa-name {
  font-weight: 600;
}

.guru-req-siswa-email {
  font-size: .8rem;
  color: #6b7280;
}

/* badge status */
.guru-req-status {
  display: inline-flex;
  align-items: center;
  padding: .15rem .5rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 500;
}

.guru-req-status-pending {
  background: #fef3c7;
  color: #92400e;
}

.guru-req-status-approved {
  background: #dcfce7;
  color: #166534;
}

.guru-req-status-rejected {
  background: #fee2e2;
  color: #b91c1c;
}

.guru-req-status-cancelled {
  background: #e5e7eb;
  color: #374151;
}

.guru-req-status-completed {
  background: #e0f2fe;
  color: #075985;
}

/* empty states */
.guru-req-empty-profile {
  margin-top: 1rem;
}

.guru-req-empty-title {
  margin: 0 0 .5rem;
}

.guru-req-empty-text {
  margin: 0 0 .75rem;
  color: #4b5563;
  max-width: 420px;
}

.guru-req-empty-list {
  padding: 1.5rem;
}

.guru-req-empty-list-sub {
  margin-top: .35rem;
  font-size: .9rem;
  color: #6b7280;
}

@media (max-width: 640px) {
  .guru-req-list-head {
    flex-direction: column;
  }
}
/* Aksi & tombol kecil */
.guru-req-actions {
  white-space: nowrap;
}

.hk-btn.hk-btn-xs {
  padding: 0.15rem 0.6rem;
  font-size: 0.75rem;
  border-radius: 999px;
}

.hk-link-small {
  font-size: 0.8rem;
  color: #2563eb;
}

.hk-link-small:hover {
  text-decoration: underline;
}
/* ==========================
   Dompet Siswa
   ========================== */

.siswa-wallet-page .wallet-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 1.6rem;
  margin-bottom: 1.8rem;
}

@media (max-width: 900px) {
  .siswa-wallet-page .wallet-main-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.wallet-balance-card {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 55%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
}

.wallet-balance-card .hk-card-body {
  padding: 1.6rem 1.8rem 1.8rem;
}

.wallet-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.25);
}

.wallet-balance-title {
  margin-top: 0.7rem;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.wallet-balance-main {
  margin-bottom: 0.25rem;
}

.wallet-balance-main-value {
  font-size: 2.1rem;
  font-weight: 700;
}

.wallet-balance-secondary {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.wallet-balance-hint {
  font-size: 0.85rem;
  margin-bottom: 0.7rem;
  opacity: 0.9;
}

.wallet-balance-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.85rem;
  opacity: 0.92;
}

.wallet-balance-list li + li {
  margin-top: 0.15rem;
}

/* Topup card */

.wallet-topup-card .hk-card-body {
  padding: 1.6rem 1.8rem 1.8rem;
}

.wallet-section-title {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.wallet-section-subtitle {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1.1rem;
}

.wallet-topup-form .wallet-form-group {
  margin-bottom: 0.9rem;
}

.wallet-topup-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.wallet-amount-input {
  display: flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d4d4d8;
  background: #ffffff;
  overflow: hidden;
}

.wallet-amount-prefix {
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  color: #64748b;
}

.wallet-amount-input input {
  border: none;
  outline: none;
  padding: 0.45rem 0.9rem 0.45rem 0.4rem;
  width: 100%;
  font-size: 0.95rem;
}

.wallet-form-group select {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #d4d4d8;
  padding: 0.45rem 0.9rem;
  font-size: 0.95rem;
}

.wallet-form-hint {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.wallet-form-actions {
  margin-top: 0.9rem;
}

.wallet-topup-btn {
  width: 130px;
}

.wallet-small-note {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: #6b7280;
}

/* History */

.wallet-history-card {
  margin-top: 1.3rem;
}

.wallet-history-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}

.wallet-empty-text {
  font-size: 0.9rem;
  color: #6b7280;
}

.wallet-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.wallet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.wallet-table th,
.wallet-table td {
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid #e5e7eb;
}

.wallet-table th {
  text-align: left;
  font-weight: 600;
  color: #6b7280;
}

.wallet-table tbody tr:hover {
  background: #f9fafb;
}

/* Badge jenis transaksi */

.wallet-badge-type {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
}

.wallet-type-topup {
  background: #dbeafe;
  color: #1d4ed8;
}

.wallet-type-charge {
  background: #fee2e2;
  color: #b91c1c;
}

.wallet-type-payout {
  background: #ede9fe;
  color: #5b21b6;
}

.wallet-type-refund {
  background: #dcfce7;
  color: #15803d;
}

.wallet-type-other {
  background: #e5e7eb;
  color: #374151;
}

/* Badge status payment */

.wallet-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
}

.wallet-status-pending {
  background: #fef3c7;
  color: #92400e;
}

.wallet-status-paid {
  background: #dcfce7;
  color: #15803d;
}

.wallet-status-expired {
  background: #e5e7eb;
  color: #4b5563;
}

.wallet-status-failed {
  background: #fee2e2;
  color: #b91c1c;
}

/* Alerts basic (kalau belum ada) */

.hk-alert {
  border-radius: 0.75rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hk-alert-success {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.hk-alert-danger {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
/* Container lebih sempit untuk halaman guru_requests */
.hk-container.hk-container-narrow {
  max-width: 1080px;
  margin: 0 auto;
}

/* Stat cards permintaan les guru */
.guru-req-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.guru-req-stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.guru-req-stat-label {
  font-size: .9rem;
  font-weight: 500;
  color: #e6f0ff;
  margin-bottom: .25rem;
}

.guru-req-stat-hint {
  font-size: .8rem;
  color: #d0e0ff;
}

/* Tabel permintaan */
.guru-req-table-card {
  margin-top: 1rem;
}

.guru-req-table-wrapper {
  overflow-x: auto;
}

.guru-req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.guru-req-table th,
.guru-req-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.guru-req-table th {
  text-align: left;
  font-weight: 600;
  color: #e6f0ff;
  background: rgba(0,0,0,0.04);
}

.guru-req-row:hover {
  background: rgba(255,255,255,0.04);
}

.guru-req-siswa-name {
  font-weight: 600;
}

.guru-req-siswa-email {
  font-size: .8rem;
  color: #d0e0ff;
}

/* Badge status */
.guru-req-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
}

.guru-req-badge-pending {
  background: #fff5e0;
  color: #b97300;
}

.guru-req-badge-approved {
  background: #e3ffe7;
  color: #1b8b3e;
}

.guru-req-badge-rejected {
  background: #ffe3e3;
  color: #c53030;
}

.guru-req-badge-done {
  background: #e0f1ff;
  color: #2266b8;
}

/* Aksi */
.guru-req-actions {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .35rem;
}

.guru-req-link-chat {
  font-size: .8rem;
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 900px) {
  .guru-req-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .guru-req-stat-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.admin-pay-detail-page .pay-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .admin-pay-detail-page .pay-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pay-detail-dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
}

.pay-detail-dl dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #6b7280;
}

.pay-detail-dl dd {
  margin: 0;
  font-weight: 500;
}

.pay-detail-email {
  font-size: 0.8rem;
  color: #6b7280;
}

.pay-detail-status-card .pay-detail-status-badge {
  margin-bottom: 0.75rem;
}

.pay-detail-status-form .form-group {
  margin-bottom: 0.75rem;
}

.pay-detail-status-select {
  width: 100%;
  padding: 0.4rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.pay-log-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pay-log-item + .pay-log-item {
  margin-top: 0.75rem;
  border-top: 1px dashed #e5e7eb;
  padding-top: 0.75rem;
}

.pay-log-line {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pay-log-level {
  font-size: 0.7rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  font-weight: 600;
}

.pay-log-level-info {
  background: #e5f3ff;
  color: #2563eb;
}
.pay-log-level-warn {
  background: #fef3c7;
  color: #b45309;
}
.pay-log-level-error {
  background: #fee2e2;
  color: #b91c1c;
}

.pay-log-meta {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #6b7280;
  display: flex;
  gap: 0.75rem;
}
.pay-row-highlight {
  background: #f0f5ff;
  box-shadow: 0 0 0 1px rgba(52, 120, 246, 0.3) inset;
}
.pay-row-highlight:hover {
  background: #e3ecff;
}
/* ===== Guru Profile Page ===== */

.guru-profile-page {
  padding-bottom: 40px;
}

/* Hero */
.guru-hero-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  margin-bottom: 28px;
  border-radius: 24px;
  background: linear-gradient(120deg, #3478F6, #6A8DFF);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  align-items: stretch;
}

.guru-hero-left {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 60%;
}

.guru-avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}

.guru-hero-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.guru-hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0;
}

.guru-hero-name {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

.guru-hero-tagline {
  margin: 0;
  font-size: 14px;
  opacity: 0.92;
}

.guru-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.guru-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
}

/* Hero right stats */
.guru-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 260px;
}

.guru-hero-stat {
  text-align: right;
}

.guru-hero-stat-label {
  font-size: 12px;
  opacity: 0.9;
}

.guru-hero-stat-value {
  font-size: 16px;
  font-weight: 600;
}

.guru-hero-stat-sub {
  font-size: 12px;
  font-weight: 400;
  margin-left: 4px;
}

.guru-hero-cta {
  margin-top: 6px;
  padding-inline: 20px;
}

/* Grid konten bawah */
.guru-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 20px;
}

.guru-col-main,
.guru-col-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Section & info */
.guru-section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.guru-section-text {
  font-size: 14px;
  color: #333;
}

.guru-info-group {
  margin-top: 10px;
}

.guru-info-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.guru-info-text {
  font-size: 14px;
}

/* Side info */
.guru-quick-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.guru-quick-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 14px;
}

.guru-quick-list .emoji {
  width: 18px;
}

/* CTA card */
.guru-side-cta .guru-section-title {
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 992px) {
  .guru-hero-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .guru-hero-left {
    max-width: 100%;
  }

  .guru-hero-right {
    align-items: flex-start;
  }

  .guru-profile-grid {
    grid-template-columns: 1fr;
  }
}
.guru-detail-page {
  padding-bottom: 40px;
}

/* Hero */
.guru-hero-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  margin-bottom: 28px;
  border-radius: 24px;
  background: linear-gradient(120deg, #3478F6, #6A8DFF);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  align-items: center;
}

.guru-hero-left {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 60%;
}

.guru-avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}

.guru-hero-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.guru-hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0;
}

.guru-hero-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.guru-hero-name {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

.guru-hero-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 600;
}

.guru-hero-tagline {
  margin: 0;
  font-size: 14px;
  opacity: 0.96;
}

/* meta pill rating & pengalaman */
.guru-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.guru-meta-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Hero right */
.guru-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  max-width: 32%;
}

.guru-hero-note {
  font-size: 13px;
  text-align: right;
  margin: 0;
  opacity: 0.95;
}

.guru-hero-cta {
  margin-top: 4px;
  padding-inline: 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

/* Grid konten detail */
.guru-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 20px;
}

/* ... (bagian lain tetap) ... */

/* Responsive */
@media (max-width: 900px) {
  .guru-hero-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .guru-hero-left {
    max-width: 100%;
  }
  .guru-hero-right {
    max-width: 100%;
    align-items: flex-start;
  }
  .guru-hero-note {
    text-align: left;
  }
}
/* Halaman ajukan les */
.lesson-request-page {
  padding-bottom: 40px;
}

/* HERO */
.lesson-hero {
  margin: 24px 0 28px;
  padding: 24px 28px;
  border-radius: 24px;
  background: linear-gradient(120deg, #3478F6, #6A8DFF);
  color: #fff;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.lesson-hero-left {
  flex: 2;
}

.lesson-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  opacity: 0.85;
  margin-bottom: 4px;
}

.lesson-hero-points {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 13px;
  opacity: 0.96;
}

.lesson-hero-points li + li {
  margin-top: 2px;
}

.lesson-hero-right {
  flex: 1.4;
  text-align: right;
}

.lesson-hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 11px;
  margin-left: 6px;
}

.lesson-hero-note {
  margin-top: 12px;
  font-size: 12px;
  opacity: 0.9;
}

/* GRID UTAMA */
.lesson-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 24px;
}

/* Kartu guru */
.lesson-guru-card {
  border-radius: 24px;
}

.hk-avatar-xl {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 24px;
  background: #fff;
  color: #3478F6;
}

.lesson-guru-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8fa3ff;
}

.lesson-guru-name {
  font-size: 20px;
}

.lesson-guru-subtext {
  font-size: 12px;
  color: #cfd7ff;
}

.lesson-guru-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lesson-badge {
  font-size: 11px;
  border-radius: 999px;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.18);
}

.lesson-badge-soft {
  background: rgba(255, 255, 255, 0.08);
}

.lesson-guru-text {
  font-size: 13px;
  margin-bottom: 6px;
}

.lesson-guru-footnote {
  font-size: 11px;
  opacity: 0.9;
}

.lesson-guru-footnote .asterisk {
  font-weight: 700;
}

/* Form card */
.lesson-form-card {
  border-radius: 24px;
}

.lesson-form-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.lesson-form-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.lesson-step-pill {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  white-space: nowrap;
}

.lesson-optional {
  font-size: 11px;
  color: #9ca3af;
}

.lesson-form-hint {
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}

.lesson-form-actions {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .lesson-hero {
    flex-direction: column;
    text-align: left;
  }
  .lesson-hero-right {
    text-align: left;
  }
  .lesson-main-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ===== Siswa Requests (Permintaan Lesku) ===== */

.siswa-req-page {
  padding-bottom: 3rem;
}

/* grid statistik */
.siswa-req-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.siswa-req-stat-card {
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.siswa-req-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.siswa-req-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.siswa-req-stat-hint {
  font-size: 0.85rem;
  color: #6b7280;
}

/* table wrapper */
.siswa-req-table-card {
  margin-top: 0.75rem;
  border-radius: 20px;
}

.siswa-req-table-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.siswa-req-table-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.siswa-req-table-sub {
  font-size: 0.9rem;
  color: #6b7280;
}

.siswa-req-table-wrapper {
  overflow-x: auto;
}

/* table */
.siswa-req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.siswa-req-table th,
.siswa-req-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  white-space: nowrap;
}

.siswa-req-table thead th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4b5563;
  background: #eef2ff;
  border-bottom: 1px solid #e5e7eb;
}

.siswa-req-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
}

.siswa-req-table tbody tr:hover {
  background: #f5f3ff;
}

/* highlight baris dari notifikasi */
.siswa-req-row-active {
  background: #eef2ff;
  box-shadow: 0 0 0 2px #4f46e5 inset;
}

/* guru info di tabel */
.siswa-req-guru-name {
  font-weight: 500;
  color: #111827;
}

.siswa-req-guru-email {
  font-size: 0.8rem;
  color: #6b7280;
}

/* badge status */
.siswa-req-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.siswa-req-badge-pending {
  background: #fff7ed;
  color: #c05621;
}

.siswa-req-badge-success {
  background: #ecfdf3;
  color: #166534;
}

.siswa-req-badge-failed {
  background: #fef2f2;
  color: #b91c1c;
}

.siswa-req-badge-done {
  background: #eff6ff;
  color: #1d4ed8;
}

/* link chat/detail */
.siswa-req-link-chat {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4f46e5;
  text-decoration: none;
}

.siswa-req-link-chat:hover {
  text-decoration: underline;
}

/* empty state */
.siswa-req-empty {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: #f9fafb;
  font-size: 0.92rem;
  color: #6b7280;
}
/* ============================
   PERMINTAAN LES – GURU
   ============================ */

/* wrapper + spacing (optional, biar mirip halaman siswa) */
.guru-req-page .hk-page-header {
  margin-bottom: 24px;
}

.guru-req-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.guru-req-stat-card {
  border-radius: 18px;
}

.guru-req-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.guru-req-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.guru-req-stat-hint {
  font-size: 12px;
  color: #9ca3af;
}

/* tabel */
.guru-req-table-card {
  margin-top: 16px;
  border-radius: 20px;
}

.guru-req-table-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}

.guru-req-table-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.guru-req-table-sub {
  font-size: 13px;
  color: #6b7280;
}

.guru-req-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.guru-req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.guru-req-table thead th {
  padding: 10px 12px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #9ca3af;
  border-bottom: 1px solid #e5e7eb;
}

.guru-req-table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid #f3f4f6;
}

/* baris klik → ke chat */
.guru-req-table tbody tr.guru-req-row {
  cursor: pointer;
  transition: background-color .15s ease, box-shadow .15s ease, transform .08s ease;
}

.guru-req-table tbody tr.guru-req-row:hover {
  background-color: #f5f7ff;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}

/* baris yang datang dari notifikasi (highlight) */
.guru-req-row-active {
  background: #eef2ff;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.55);
}

/* nama + email siswa di sel kedua */
.guru-req-siswa-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.guru-req-siswa-email {
  font-size: 12px;
  color: #9ca3af;
}

/* badge status */
.guru-req-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.guru-req-badge-pending {
  background-color: #fef3c7;
  color: #92400e;
}

.guru-req-badge-success {
  background-color: #dcfce7;
  color: #166534;
}

.guru-req-badge-done {
  background-color: #e0f2fe;
  color: #075985;
}

.guru-req-badge-failed {
  background-color: #fee2e2;
  color: #b91c1c;
}

/* aksi di kolom terakhir */
.guru-req-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.guru-req-inline-form {
  display: inline-block;
}

.guru-req-link-chat {
  font-size: 13px;
  font-weight: 600;
  color: #4f46e5;
  text-decoration: none;
}

.guru-req-link-chat:hover {
  text-decoration: underline;
}

/* teks kalau kosong */
.guru-req-empty {
  font-size: 14px;
  color: #6b7280;
  padding: 12px 2px;
}
/* ===========================================
   PERMINTAAN LES – GURU, SISWA, ADMIN
   =========================================== */

/* Wrapper umum halaman permintaan les (admin) */
.admin-les-page {
  padding-top: 24px;
  padding-bottom: 40px;
}

.admin-les-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ------- STAT CARDS (dipakai guru, siswa, admin) ------- */

.guru-req-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .guru-req-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .guru-req-stat-grid {
    grid-template-columns: 1fr;
  }
}

.guru-req-stat-card .hk-card-body {
  padding: 18px 20px;
}

.guru-req-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #8fa2c2;
  margin-bottom: 6px;
}

.guru-req-stat-value {
  font-size: 26px;
  font-weight: 700;
  color: #15213b;
  margin-bottom: 4px;
}

.guru-req-stat-hint {
  font-size: 12px;
  color: #8fa2c2;
}

/* ------- FILTER BAR (dipakai admin & payments) ------- */

.pay-filter-card .hk-card-body {
  padding: 16px 20px;
}

.pay-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 18px;
  align-items: flex-end;
}

@media (max-width: 992px) {
  .pay-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .pay-filter-grid {
    grid-template-columns: 1fr;
  }
}

.pay-filter-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #394867;
}

.pay-filter-field select,
.pay-filter-field input[type="text"],
.pay-filter-field input[type="date"] {
  width: 100%;
  min-height: 38px;
}

.pay-filter-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ------- TABLE WRAPPER ------- */

.guru-req-table-card .hk-card-body {
  padding: 18px 22px 22px;
}

.guru-req-table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.guru-req-table-title {
  font-size: 18px;
  font-weight: 600;
  color: #15213b;
}

.guru-req-table-sub {
  font-size: 13px;
  color: #8fa2c2;
}

.guru-req-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 4px;
}

/* ------- TABLE STYLE ------- */

.guru-req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.guru-req-table thead {
  background: #f3f6ff;
}

.guru-req-table th,
.guru-req-table td {
  padding: 9px 12px;
  border-bottom: 1px solid #e5ecff;
  text-align: left;
  vertical-align: middle;
}

.guru-req-table th {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #6b7da8;
}

.guru-req-table tbody tr:nth-child(even) {
  background-color: #fcfdff;
}

.guru-req-table tbody tr:hover {
  background-color: #f5f8ff;
}

.guru-req-row-active {
  box-shadow: 0 0 0 2px rgba(79, 119, 255, 0.20);
  background: #f0f5ff !important;
}

/* Nama & email di sel siswa/guru */

.guru-req-siswa-name {
  font-weight: 600;
  color: #1d2748;
  margin-bottom: 2px;
}

.guru-req-siswa-email {
  font-size: 11px;
  color: #8fa2c2;
}

/* ------- BADGE STATUS ------- */

.guru-req-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid transparent;
}

.guru-req-badge-pending {
  background: #fff7de;
  border-color: #ffe2a1;
  color: #946300;
}

.guru-req-badge-success {
  background: #e6f7ea;
  border-color: #b6e4c3;
  color: #1e7b3c;
}

.guru-req-badge-done {
  background: #e3edff;
  border-color: #c3d6ff;
  color: #2155c4;
}

.guru-req-badge-failed {
  background: #ffe6eb;
  border-color: #f7b8c6;
  color: #c0263a;
}

/* Override untuk kelas yang dipakai fungsi helper */
.guru-req-badge-success.guru-req-badge,
.guru-req-badge-done.guru-req-badge,
.guru-req-badge-failed.guru-req-badge,
.guru-req-badge-pending.guru-req-badge {
  border-width: 1px;
}

/* ------- LINK / AKSI ------- */

.guru-req-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.guru-req-inline-form {
  display: inline-block;
}

.guru-req-link-chat {
  font-size: 12px;
  font-weight: 600;
  color: #3b63ff;
  text-decoration: none;
}

.guru-req-link-chat:hover {
  text-decoration: underline;
}

/* ------- EMPTY STATE ------- */

.guru-req-empty {
  padding: 14px 4px 4px;
  font-size: 13px;
  color: #8fa2c2;
}

/* Tombol export di kanan atas tabel (dipakai admin & payments) */
.pay-export-btn {
  font-size: 13px;
  padding-inline: 14px;
}
/* ================================
   Admin - Lesson Requests
   ================================ */
.admin-lesson-req-page {
  max-width: 1080px;
  margin: 0 auto 40px;
}

/* Stat cards */
.lesson-req-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.lesson-req-stat-card .hk-card-body {
  padding: 18px 20px;
}

.lesson-req-stat-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #7f8ba7;
  margin-bottom: 6px;
}

.lesson-req-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #1c2657;
  margin-bottom: 4px;
}

.lesson-req-stat-hint {
  font-size: 12px;
  color: #9aa5c0;
}

/* Filter */
.lesson-req-filter-card .hk-card-body {
  padding: 18px 20px 16px;
}

.lesson-req-filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: 14px 16px;
  align-items: flex-end;
}

.lesson-req-filter-field label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #1c2657;
}

/* date input - biar nggak kepanjangan */
.lesson-req-date-input input[type="date"].lesson-req-date {
  max-width: 190px;
  width: 100%;
}

/* Tombol filter */
.lesson-req-filter-actions {
  margin-top: 4px;
  display: flex;
  gap: 10px;
}

.lesson-req-filter-actions .hk-btn {
  padding-inline: 18px;
}

/* Tabel */
.lesson-req-table-card {
  margin-top: 20px;
}

.lesson-req-table-wrapper {
  overflow-x: auto;
}

.lesson-req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.lesson-req-table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #7f8ba7;
  padding: 10px 12px;
  background: #f3f5ff;
  border-bottom: 1px solid #e0e4ff;
}

.lesson-req-table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid #edf0fb;
}

.lesson-req-name {
  font-weight: 600;
  color: #1c2657;
}

.lesson-req-subtext {
  font-size: 12px;
  color: #8b93b5;
}

/* badge status */
.lesson-req-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.lesson-req-badge-pending {
  background: #fff6e5;
  color: #c88718;
}

.lesson-req-badge-approved {
  background: #e6f8f0;
  color: #1d8b4b;
}

.lesson-req-badge-done {
  background: #e7ecff;
  color: #3846b2;
}

.lesson-req-badge-rejected {
  background: #ffe8e8;
  color: #c93737;
}

/* highlight baris dari notifikasi */
.lesson-req-row-active {
  box-shadow: 0 0 0 1px #4c6fff33;
  background: #f6f8ff;
}

/* Responsif */
@media (max-width: 1024px) {
  .lesson-req-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lesson-req-filter-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .lesson-req-stat-grid {
    grid-template-columns: 1fr;
  }
  .lesson-req-filter-grid {
    grid-template-columns: 1fr;
  }
  .lesson-req-date-input input[type="date"].lesson-req-date {
    max-width: 100%;
  }
}
/* =========================================
   Admin Lesson Requests – beautify filters
   ========================================= */

/* Semua kontrol di bar filter (select, text, date) */
.admin-lesson-req-page .lesson-req-filter-card select,
.admin-lesson-req-page .lesson-req-filter-card input[type="text"],
.admin-lesson-req-page .lesson-req-filter-card input[type="date"] {
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  color: #1c2657;
  border-radius: 999px;
  border: 1px solid #d4ddff;
  padding: 8px 14px;
  height: 40px;
  outline: none;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(23, 78, 166, 0.06);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

/* Fokus: kasih aksen biru */
.admin-lesson-req-page .lesson-req-filter-card select:focus,
.admin-lesson-req-page .lesson-req-filter-card input[type="text"]:focus,
.admin-lesson-req-page .lesson-req-filter-card input[type="date"]:focus {
  border-color: #3478f6;
  box-shadow: 0 0 0 2px rgba(52, 120, 246, 0.2);
}

/* Biar placeholder / teks di input cari tidak terlalu pucat */
.admin-lesson-req-page .lesson-req-filter-card input::placeholder {
  color: #a5afc7;
}

/* Labelnya sedikit diperkuat */
.admin-lesson-req-page .lesson-req-filter-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1c2657;
}

/* Susunan grid disempurnakan sedikit */
.admin-lesson-req-page .lesson-req-filter-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 18px 18px;
}

/* Tombol filter biar kelihatan “chip” juga */
.admin-lesson-req-page .lesson-req-filter-actions {
  margin-top: 4px;
  display: flex;
  gap: 10px;
}

.admin-lesson-req-page .lesson-req-filter-actions .hk-btn-primary {
  border-radius: 999px;
  padding: 8px 22px;
}

.admin-lesson-req-page .lesson-req-filter-actions .hk-btn-ghost {
  border-radius: 999px;
  padding: 8px 18px;
}

/* Responsif */
@media (max-width: 1024px) {
  .admin-lesson-req-page .lesson-req-filter-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .admin-lesson-req-page .lesson-req-filter-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   ADMIN – TICKETS BANTUAN
   ========================================= */

.admin-ticket-page .admin-ticket-wrapper {
  max-width: 1080px;
  margin: 0 auto 32px;
}

/* Header */
.admin-ticket-page .hk-page-header {
  margin-bottom: 24px;
}

.admin-ticket-page .hk-page-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.admin-ticket-page .hk-page-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.admin-ticket-page .hk-chip-admin {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Title & subtitle di atas panel putih (jadi hitam, bukan putih) */
.admin-ticket-page .hk-page-title,
.admin-ticket-page .hk-page-subtitle {
  color: #10172b;
}

/* Bungkus stat cards & filter di panel putih global */
.admin-ticket-page .admin-ticket-wrapper > .pay-stat-grid,
.admin-ticket-page .admin-ticket-wrapper > .pay-filter-card,
.admin-ticket-page .admin-ticket-wrapper > .pay-table-card {
  border-radius: 22px;
}

/* =========================================
   STAT CARDS
   ========================================= */

.admin-ticket-page .pay-stat-grid {
  margin-bottom: 20px;
}

.admin-ticket-page .pay-stat-card {
  border-radius: 20px;
}

.admin-ticket-page .pay-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #55607a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-ticket-page .pay-stat-value {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-top: 6px;
  margin-bottom: 6px;
}

.admin-ticket-page .pay-stat-hint {
  font-size: 12px;
  color: #8f9abc;
}

/* =========================================
   FILTER BAR
   ========================================= */

.admin-ticket-page .pay-filter-card {
  margin-top: 12px;
  margin-bottom: 20px;
  border-radius: 22px;
}

.admin-ticket-page .pay-filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) minmax(0, 1.4fr) auto;
  gap: 18px 18px;
  align-items: flex-end;
}

.admin-ticket-page .pay-filter-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1c2657;
}

/* Kontrol input = pill putih rapi */
.admin-ticket-page .pay-filter-card select,
.admin-ticket-page .pay-filter-card input[type="text"] {
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  color: #1c2657;
  border-radius: 999px;
  border: 1px solid #d4ddff;
  padding: 8px 14px;
  height: 40px;
  outline: none;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(23, 78, 166, 0.06);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.admin-ticket-page .pay-filter-card select:focus,
.admin-ticket-page .pay-filter-card input[type="text"]:focus {
  border-color: #3478f6;
  box-shadow: 0 0 0 2px rgba(52, 120, 246, 0.20);
}

.admin-ticket-page .pay-filter-card input::placeholder {
  color: #a5afc7;
}

/* Tombol filter */
.admin-ticket-page .pay-filter-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.admin-ticket-page .pay-filter-actions .hk-btn-primary,
.admin-ticket-page .pay-filter-actions .hk-btn-ghost {
  border-radius: 999px;
  padding-inline: 20px;
  height: 40px;
  display: inline-flex;
  align-items: center;
}

/* =========================================
   TABLE
   ========================================= */

.admin-ticket-page .pay-table-card {
  border-radius: 22px;
}

/* Subjek tiket: satu baris, ada ellipsis */
.admin-ticket-page .ticket-subject-cell {
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pil jenis tiket */
.admin-ticket-page .ticket-type-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: #eef0ff;
  color: #374151;
}

.admin-ticket-page .ticket-type-payment {
  background: #ecfdf3;
  color: #166534;
}

.admin-ticket-page .ticket-type-lesson {
  background: #eff6ff;
  color: #1d4ed8;
}

.admin-ticket-page .ticket-type-account {
  background: #fef3c7;
  color: #92400e;
}

.admin-ticket-page .ticket-type-other {
  background: #f3f4ff;
  color: #4338ca;
}

/* Klikable row: hover */
.admin-ticket-page .pay-table.pay-table-clickable tbody tr:hover {
  background: #f5f7ff;
  cursor: pointer;
}

/* Responsif */
@media (max-width: 1024px) {
  .admin-ticket-page .pay-filter-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .admin-ticket-page .admin-ticket-wrapper {
    padding-inline: 4px;
  }

  .admin-ticket-page .pay-filter-grid {
    grid-template-columns: 1fr;
  }

  .admin-ticket-page .pay-table-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* ============================
   ADMIN – TICKETS BANTUAN (COMPACT)
   ============================ */

/* Panel putih di tengah */
.admin-ticket-page .admin-ticket-wrapper {
  max-width:1080px;
  margin:24px auto;
  background:#fff;
  border-radius:24px;
  padding:24px 28px;
  box-shadow:0 8px 24px rgba(15,23,42,0.08);
}

/* Header di dalam panel */
.admin-ticket-page .hk-page-header {
  margin-bottom: 20px;
}

.admin-ticket-page .hk-page-header-top .hk-page-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;                   /* abu gelap, bukan putih di atas biru */
}

.admin-ticket-page .hk-chip-admin {
  background: rgba(52, 120, 246, 0.08);
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.admin-ticket-page .hk-page-title {
  color: #111827;
  font-size: 24px;
  margin-bottom: 4px;
}

.admin-ticket-page .hk-page-subtitle {
  color: #4b5563;
  font-size: 14px;
}

/* ============================
   STAT CARDS – LEBIH RAPI
   ============================ */

.admin-ticket-page .pay-stat-grid {
  margin-top: 4px;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-ticket-page .pay-stat-card {
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.admin-ticket-page .pay-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}

.admin-ticket-page .pay-stat-value {
  color: #111827;
  font-size: 24px;
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 6px;
}

.admin-ticket-page .pay-stat-hint {
  color: #9ca3af;
  font-size: 12px;
}

/* ============================
   FILTER BAR – COMPACT & JELAS
   ============================ */

.admin-ticket-page .pay-filter-card {
  border-radius: 20px;
  margin-bottom: 22px;
}

.admin-ticket-page .pay-filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1.4fr) auto;
  gap: 14px 14px;
  align-items: flex-end;
}

.admin-ticket-page .pay-filter-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

/* Input & select jadi pill putih yang pendek */
.admin-ticket-page .pay-filter-card select,
.admin-ticket-page .pay-filter-card input[type="text"] {
  width: 100%;
  height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
  outline: none;
}

.admin-ticket-page .pay-filter-card input::placeholder {
  color: #9ca3af;
}

/* Tombol filter */
.admin-ticket-page .pay-filter-actions {
  display: flex;
  gap: 10px;
}

.admin-ticket-page .pay-filter-actions .hk-btn-primary,
.admin-ticket-page .pay-filter-actions .hk-btn-ghost {
  height: 36px;
  padding-inline: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

/* ============================
   TABEL
   ============================ */

.admin-ticket-page .pay-table-card {
  border-radius: 20px;
}

/* Subjek tiket biar tidak kepanjangan */
.admin-ticket-page .ticket-subject-cell {
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1024px) {
  .admin-ticket-page .admin-ticket-wrapper {
    margin-inline: 12px;
  }

  .admin-ticket-page .pay-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-ticket-page .pay-filter-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .admin-ticket-page .admin-ticket-wrapper {
    padding: 20px 16px 24px;
    margin-inline: 8px;
  }

  .admin-ticket-page .pay-stat-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-ticket-page .pay-filter-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* =======================================
   ADMIN – PEMBAYARAN (COMPACT & SERAGAM)
   ======================================= */
.admin-pay-page .admin-pay-wrapper {
  max-width:1080px;
  margin:24px auto;
  background:#fff;
  border-radius:24px;
  padding:24px 28px;
  box-shadow:0 8px 24px rgba(15,23,42,0.08);
}

/* Header di dalam panel */
.admin-pay-page .hk-page-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.admin-pay-page .hk-page-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.admin-pay-page .hk-chip-admin {
  background: rgba(52, 120, 246, 0.08);
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.admin-pay-page .hk-page-title {
  color: #111827;
  font-size: 24px;
  margin-bottom: 4px;
}

.admin-pay-page .hk-page-subtitle {
  color: #4b5563;
  font-size: 14px;
}

/* ============================
   STAT CARDS
   ============================ */

.admin-pay-page .pay-stat-grid {
  margin-top: 4px;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-pay-page .pay-stat-card {
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.admin-pay-page .pay-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}

.admin-pay-page .pay-stat-value {
  color: #111827;
  font-size: 24px;
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 6px;
}

.admin-pay-page .pay-stat-hint {
  color: #9ca3af;
  font-size: 12px;
}

.admin-pay-page .pay-stat-value-mini {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

/* ============================
   FILTER BAR – COMPACT
   ============================ */

.admin-pay-page .pay-filter-card {
  border-radius: 20px;
  margin-bottom: 22px;
}

.admin-pay-page .pay-filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1.4fr) auto;
  gap: 14px 14px;
  align-items: flex-end;
}

.admin-pay-page .pay-filter-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

/* Input & select jadi pill */
.admin-pay-page .pay-filter-card select,
.admin-pay-page .pay-filter-card input[type="text"] {
  width: 100%;
  height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
  outline: none;
}

.admin-pay-page .pay-filter-card input::placeholder {
  color: #9ca3af;
}

.admin-pay-page .pay-filter-actions {
  display: flex;
  gap: 10px;
}

.admin-pay-page .pay-filter-actions .hk-btn-primary,
.admin-pay-page .pay-filter-actions .hk-btn-ghost {
  height: 36px;
  padding-inline: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

/* ============================
   TABLE
   ============================ */

.admin-pay-page .pay-table-card {
  border-radius: 20px;
}

.admin-pay-page .pay-table-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.admin-pay-page .pay-table-sub {
  font-size: 13px;
  color: #6b7280;
}

/* highlight baris yang datang dari notifikasi (pay-row-highlight) */
.admin-pay-page .pay-row-highlight {
  background: rgba(52, 120, 246, 0.06);
}

.admin-pay-page .pay-row-highlight:hover {
  background: rgba(52, 120, 246, 0.12);
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1024px) {
  .admin-pay-page .admin-pay-wrapper {
    margin-inline: 12px;
  }

  .admin-pay-page .pay-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-pay-page .pay-filter-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .admin-pay-page .admin-pay-wrapper {
    padding: 20px 16px 24px;
    margin-inline: 8px;
  }

  .admin-pay-page .pay-stat-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-pay-page .pay-filter-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* =======================================
   ADMIN – WITHDRAW GURU (SERAGAM)
   ======================================= */
.admin-wd-page .admin-wd-wrapper {
  max-width:1080px;
  margin:24px auto;
  background:#fff;
  border-radius:24px;
  padding:24px 28px;
  box-shadow:0 8px 24px rgba(15,23,42,0.08);
}

/* Header kecil di atas judul */
.admin-wd-page .hk-page-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.admin-wd-page .hk-page-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.admin-wd-page .hk-chip-admin {
  background: rgba(52, 120, 246, 0.08);
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.admin-wd-page .hk-page-title {
  color: #111827;
  font-size: 24px;
  margin-bottom: 4px;
}

.admin-wd-page .hk-page-subtitle {
  color: #4b5563;
  font-size: 14px;
}

/* ============================
   STAT CARDS – pakai gaya yang sama
   ============================ */

.admin-wd-page .pay-stat-grid {
  margin-top: 4px;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-wd-page .pay-stat-card {
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.admin-wd-page .pay-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}

.admin-wd-page .pay-stat-value {
  color: #111827;
  font-size: 24px;
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 6px;
}

.admin-wd-page .pay-stat-hint {
  color: #9ca3af;
  font-size: 12px;
}

/* ============================
   FILTER BAR – lebih compact
   ============================ */

.admin-wd-page .pay-filter-card {
  border-radius: 20px;
  margin-bottom: 22px;
}

/* 2 field + tombol → 3 kolom saja */
.admin-wd-page .pay-filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.6fr) auto;
  gap: 14px 14px;
  align-items: flex-end;
}

.admin-wd-page .pay-filter-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

/* input & select jadi pill, sama seperti pembayaran */
.admin-wd-page .pay-filter-card select,
.admin-wd-page .pay-filter-card input[type="text"] {
  width: 100%;
  height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
  outline: none;
}

.admin-wd-page .pay-filter-card input::placeholder {
  color: #9ca3af;
}

.admin-wd-page .pay-filter-actions {
  display: flex;
  gap: 10px;
}

.admin-wd-page .pay-filter-actions .hk-btn-primary,
.admin-wd-page .pay-filter-actions .hk-btn-ghost {
  height: 36px;
  padding-inline: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

/* ============================
   TABLE WRAPPER
   ============================ */

.admin-wd-page .pay-table-card {
  border-radius: 20px;
}

.admin-wd-page .pay-table-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.admin-wd-page .pay-table-sub {
  font-size: 13px;
  color: #6b7280;
}

.admin-wd-page .pay-empty-text {
  font-size: 13px;
  color: #6b7280;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1024px) {
  .admin-wd-page .admin-wd-wrapper {
    margin-inline: 12px;
  }

  .admin-wd-page .pay-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-wd-page .pay-filter-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .admin-wd-page .admin-wd-wrapper {
    padding: 20px 16px 24px;
    margin-inline: 8px;
  }

  .admin-wd-page .pay-stat-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-wd-page .pay-filter-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* =======================================
   ADMIN – DASHBOARD
   ======================================= */
.admin-dash-page .hk-dashboard-common {
  max-width:1080px;
  margin:24px auto;
  background:#fff;
  border-radius:24px;
  padding:24px 28px;
  box-shadow:0 8px 24px rgba(15,23,42,0.08);
}

/* HERO -------------------------------------------------- */

.admin-dash-page .hk-dash-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 18px;
  margin-bottom: 22px;
}

.admin-dash-page .hk-dash-hero-main h1 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 4px;
  color: #111827;
}

.admin-dash-page .hk-dash-hero-main p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 10px;
}

.admin-dash-page .hk-dash-hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(52, 120, 246, 0.08);
  color: #1d4ed8;
  margin-bottom: 8px;
}

.admin-dash-page .hk-dash-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-dash-page .hk-pill-soft {
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4ff;
  font-size: 12px;
  color: #1f2937;
}

/* hero side card */

.admin-dash-page .hk-dash-hero-card {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  padding: 14px 16px 16px;
}

.admin-dash-page .hk-dash-hero-card-header {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.admin-dash-page .hk-dash-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.admin-dash-page .hk-dash-stat-label {
  font-size: 11px;
  color: #6b7280;
}

.admin-dash-page .hk-dash-stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.admin-dash-page .hk-dash-hero-rating-text {
  font-size: 12px;
  color: #6b7280;
}

/* KPI GRID -------------------------------------------------- */

.admin-dash-page .hk-dash-kpi {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.admin-dash-page .hk-dash-kpi-card {
  border-radius: 18px;
  padding: 14px 16px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.admin-dash-page .hk-dash-kpi-icon {
  font-size: 20px;
}

.admin-dash-page .hk-dash-kpi-label {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}

.admin-dash-page .hk-dash-kpi-value {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.admin-dash-page .hk-dash-kpi-sub {
  font-size: 12px;
  color: #9ca3af;
}

/* MAIN GRID -------------------------------------------------- */

.admin-dash-page .hk-dash-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 18px;
}

.admin-dash-page .hk-dash-side-column .hk-card {
  margin-bottom: 14px;
}

.admin-dash-page .hk-dash-mini-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.admin-dash-page .hk-dash-mini-list li + li {
  margin-top: 4px;
}

.admin-dash-page .hk-dash-mini-list a {
  font-size: 13px;
  color: #1d4ed8;
  text-decoration: none;
}

.admin-dash-page .hk-dash-mini-list a:hover {
  text-decoration: underline;
}

/* TABLE -------------------------------------------------- */

.admin-dash-page .hk-card-head-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.admin-dash-page .hk-card-head-row h2 {
  font-size: 16px;
  font-weight: 600;
}

.admin-dash-page .hk-card-head-row .hk-muted {
  font-size: 12px;
  color: #6b7280;
}

/* RESPONSIVE -------------------------------------------------- */

@media (max-width: 1024px) {
  .admin-dash-page .hk-dashboard-common {
    margin-inline: 12px;
  }

  .admin-dash-page .hk-dash-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-dash-page .hk-dash-hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .admin-dash-page .hk-dash-kpi {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-dash-page .hk-dash-main-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .admin-dash-page .hk-dashboard-common {
    padding: 20px 16px 24px;
    margin-inline: 8px;
  }

  .admin-dash-page .hk-dash-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-dash-page .hk-dash-kpi {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* =========================================================
   LANDING PAGE (index.php)
   ========================================================= */

.hk-landing-hero-inner {
  max-width: 1080px;
  margin: 24px auto 32px;          /* jarak header ↔ panel & ke bawah */
  background: #f7f8ff;
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(23, 78, 166, 0.18);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  column-gap: 40px;
  align-items: center;
}

/* ---------------------------------------------------------
   KONTEN KIRI HERO
   --------------------------------------------------------- */
.hk-hero-left {
  max-width: 520px;
}

.hk-hero-chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(52, 120, 246, 0.08);
  color: #1b4acb;
  margin-bottom: 14px;
}

.hk-hero-title {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  color: #141c3a;
  margin: 0 0 12px;
}

.hk-hero-title span {
  color: #3478f6;
}

.hk-hero-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0 0 18px;
}

.hk-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hk-hero-cta {
  min-width: 170px;
  justify-content: center;
}

/* daftar benefit kecil di bawah tombol */
.hk-hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #4a5568;
}

.hk-hero-benefits li + li {
  margin-top: 4px;
}

/* ---------------------------------------------------------
   KARTU CONTOH KELAS (KANAN)
   --------------------------------------------------------- */
.hk-hero-right {
  display: flex;
  justify-content: center;
}

.hk-landing-class-card {
  width: 100%;
  max-width: 320px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 20px 20px;
  box-shadow: 0 18px 40px rgba(15, 37, 93, 0.14);
  font-size: 13px;
}

.hk-class-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.hk-class-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #718096;
  margin-bottom: 2px;
}

.hk-class-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: #1a202c;
}

.hk-class-sub {
  font-size: 11px;
  color: #a0aec0;
}

.hk-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.hk-pill-live {
  background: rgba(255, 122, 122, 0.12);
  color: #e53e3e;
}

.hk-class-tutor {
  display: flex;
  gap: 10px;
  margin: 12px 0 10px;
}

.hk-class-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #3478f6;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.hk-class-tutor-name {
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 2px;
}

.hk-class-tutor-meta {
  font-size: 11px;
  color: #718096;
}

.hk-class-rating {
  font-size: 11px;
  color: #f6ad55;
}

.hk-class-rating span {
  color: #4a5568;
}

.hk-class-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 12px;
}

.hk-class-meta-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a0aec0;
  margin-bottom: 2px;
}

.hk-class-meta-value {
  font-size: 12px;
  color: #2d3748;
}

.hk-class-meta-value span {
  font-size: 11px;
  color: #718096;
}

.hk-progress {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: #edf2f7;
  overflow: hidden;
  margin-bottom: 8px;
}

.hk-progress-inner {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3478f6, #7f5cff);
}

.hk-class-foot {
  font-size: 11px;
  color: #718096;
}

.hk-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  margin-right: 6px;
}

/* ---------------------------------------------------------
   WHY SECTION — lebar & margin seragam
   --------------------------------------------------------- */
.hk-landing-why {
  padding: 0 16px 72px;
}

.hk-landing-why-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.hk-why-header h2 {
  font-size: 22px;
  margin: 0 0 4px;
  color: #f7fafc;
}

.hk-why-header p {
  margin: 0 0 18px;
  font-size: 14px;
  color: #e2e8f0;
}

/* grid kartu manfaat */
.hk-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hk-why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 14px 32px rgba(15, 37, 93, 0.16);
}

.hk-why-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: #1a202c;
}

.hk-why-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #4a5568;
}

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 1024px) {
  .hk-landing-hero-inner {
    margin: 16px auto 24px;
    padding: 24px 20px 28px;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 24px;
  }

  .hk-hero-left {
    max-width: none;
  }

  .hk-hero-title {
    font-size: 26px;
  }

  .hk-landing-why {
    padding-bottom: 56px;
  }

  .hk-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hk-landing-hero-inner {
    padding: 20px 16px 24px;
  }

  .hk-hero-title {
    font-size: 24px;
  }

  .hk-hero-cta-row {
    flex-direction: column;
  }

  .hk-landing-class-card {
    max-width: 100%;
  }
}
/* =========================
   ABOUT / TENTANG HAIKLAS
   ========================= */

/* Shell: lebar sama dengan halaman lain (1080px) */
.about-page .hk-page-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* Hero card */
.about-page .hk-hero.hk-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  padding: 32px 36px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(23, 78, 166, 0.14);
}

.about-page .hk-hero-title {
  font-size: 2.1rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.about-page .hk-hero-subtitle {
  font-size: 0.97rem;
  color: #4b5563;
  max-width: 520px;
}

.about-page .hk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* Badge hero sebelah kanan */
.about-page .hk-hero-badge {
  position: relative;
  min-width: 260px;
  border-radius: 24px;
  padding: 20px 24px;
  background: radial-gradient(circle at 80% 0%, #e0ecff 0, #f4f7ff 55%, #ffffff 100%);
  overflow: hidden;
  font-size: 0.85rem;
  color: #4b5563;
}

.about-page .hk-hero-badge::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(52, 120, 246, 0.08);
}

.about-page .hk-hero-stat {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.about-page .hk-hero-stat-number {
  display: block;
  font-weight: 600;
  font-size: 1.35rem;
  color: #1f2933;
}

.about-page .hk-hero-stat-label {
  font-size: 0.82rem;
  color: #6b7280;
}

/* Judul & subjudul section */
.about-page .hk-section-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.about-page .hk-section-subtitle {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 12px;
}

/* GRID "Cara kerja" */
.about-page .hk-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.about-page .hk-step-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 14px 35px rgba(23, 78, 166, 0.08);
  position: relative;
}

.about-page .hk-step-badge {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #3478f6;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.about-page .hk-step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.about-page .hk-step-card p {
  font-size: 0.93rem;
  color: #4b5563;
  margin-bottom: 8px;
}

.about-page .hk-step-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.about-page .hk-step-list li {
  position: relative;
  padding-left: 14px;
  margin: 3px 0;
}

.about-page .hk-step-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #3478f6;
}

/* 2 kolom & 3 kolom card */
.about-page .hk-cols-2,
.about-page .hk-cols-3 {
  margin-top: 18px;
  gap: 20px;
  display: grid;
}

.about-page .hk-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-page .hk-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-page .hk-cols-2 .hk-card.soft,
.about-page .hk-cols-3 .hk-card.soft {
  border-radius: 20px;
  padding: 18px 20px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(23, 78, 166, 0.06);
}

.about-page .hk-cols-2 .hk-card.soft h3,
.about-page .hk-cols-3 .hk-card.soft h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.about-page .hk-bullet-list {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: #4b5563;
}

/* CTA akhir */
.about-page .hk-cta {
  margin-top: 10px;
  padding: 20px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #3478f6, #5b8dfa);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.about-page .hk-cta .hk-section-title {
  color: #ffffff;
}

.about-page .hk-cta .hk-section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.about-page .hk-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-page .hk-cta .hk-btn.hk-btn-ghost {
  border-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
  background: transparent;
}

/* Responsif */
@media (max-width: 960px) {
  .about-page .hk-hero.hk-card {
    flex-direction: column;
    padding: 24px 22px;
  }

  .about-page .hk-hero-badge {
    align-self: stretch;
  }

  .about-page .hk-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .hk-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .about-page .hk-page-inner {
    padding-top: 24px;
  }

  .about-page .hk-steps-grid,
  .about-page .hk-cols-2,
  .about-page .hk-cols-3 {
    grid-template-columns: 1fr;
  }

  .about-page .hk-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================
   TWEAK PUSAT BANTUAN
   ========================= */

/* Panel putih tetap 1080px seperti tadi */
.help-page .help-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 32px 32px;
  box-shadow: 0 22px 55px rgba(23, 78, 166, 0.18);
}

/* --- QUICK CARD LEBIH KELIHATAN --- */
.help-quick-card {
  background: radial-gradient(circle at top left, #eef2ff 0%, #f9fafb 45%, #ffffff 100%);
  border-radius: 20px;
  padding: 18px 20px;
  text-decoration: none;
  color: #111827;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease;
}

.help-quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  background: radial-gradient(circle at top left, #e0e7ff 0%, #fefefe 55%, #ffffff 100%);
  border-color: #c7d2fe;
}

.help-quick-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.help-quick-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.help-quick-sub {
  font-size: 0.9rem;
  color: #4b5563;
}

/* --- FAQ: PASTIKAN RATA KIRI --- */
.help-faq {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  margin-bottom: 10px;
  overflow: hidden;
}

/* summary sebagai baris flex, tapi teks tetap di kiri */
.help-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between; /* teks kiri, ikon di kanan */
  text-align: left;               /* paksa teks rata kiri */
}

/* hilangkan marker bawaan browser */
.help-faq summary::-webkit-details-marker {
  display: none;
}

/* ikon panah custom di kanan */
.help-faq summary::after {
  content: '▾';
  font-size: 0.8rem;
  color: #6b7280;
  margin-left: 12px;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

/* ketika open, panah berputar ke atas */
.help-faq[open] summary::after {
  transform: rotate(180deg);
}

.help-faq[open] summary {
  border-bottom: 1px solid #eef2ff;
}

.help-faq-body {
  padding: 10px 16px 12px;
  font-size: 0.9rem;
  color: #4b5563;
  text-align: left; /* jaga isi tetap rata kiri */
}

/* RESPONSIVE TWEAK SEDIKIT */
@media (max-width: 960px) {
  .help-quick-card {
    padding: 16px;
  }
}

@media (max-width: 640px) {
  .help-page .help-wrapper {
    padding: 22px 18px 26px;
  }
}
/* Layout umum halaman */
.hk-page {
  padding: 32px 0 64px;
}

.hk-page-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Kartu besar notifikasi (biar sama feel-nya dengan index & help center) */
.notif-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 28px 32px;
  box-shadow: 0 18px 55px rgba(23, 78, 166, 0.18);
}

.notif-page .hk-page-header {
  margin-bottom: 20px;
}
