/* ============================================
   ADMIN PANEL — Direktori BP
   Extends css/styles.css (load styles.css first)
   ============================================ */

/* ── Auth loading overlay ─────────────────── */
.auth-loading {
  position: fixed;
  inset: 0;
  background: var(--bp-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 18px;
}

.auth-loading .brand { font-size: 20px; font-weight: 800; color: white; }
.auth-loading .hint  { font-size: 13px; color: rgba(255,255,255,0.55); }

.spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--bp-red);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Layout shell ─────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: var(--bg-light);
}

/* ── Sidebar ──────────────────────────────── */
.admin-sidebar {
  width: 256px;
  background: var(--bp-navy);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  flex-shrink: 0;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: white;
  font-size: 17px;
  font-weight: 800;
  flex-shrink: 0;
}

.sidebar-brand .s-icon   { font-size: 22px; }
.sidebar-brand .s-accent { color: var(--bp-red-light); }

.sidebar-nav { flex: 1; padding: 10px 0; }

.nav-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  padding: 12px 16px 5px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  position: relative;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}

.nav-item:hover                  { background: rgba(255,255,255,0.07); color: white; }
.nav-item.active                 { color: white; font-weight: 600; background: rgba(200,16,46,0.2); }
.nav-item.active::before         { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; background: var(--bp-red); border-radius: 0 2px 2px 0; }
.nav-item.nav-disabled           { opacity: 0.3; pointer-events: none; }

.nav-icon   { font-size: 15px; width: 18px; flex-shrink: 0; text-align: center; }

.nav-count  { margin-left: auto; background: var(--bp-red); color: white; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 10px; }

.sidebar-footer { padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.08); flex-shrink: 0; }

/* ── Sidebar overlay (mobile close) ──────── */
.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.42); z-index: 99; }
.sidebar-overlay.open { display: block; }

/* ── Main area ────────────────────────────── */
.admin-main {
  margin-left: 256px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* ── Topbar ───────────────────────────────── */
.admin-topbar {
  background: white;
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 50;
  flex-shrink: 0;
}

.topbar-left  { display: flex; align-items: center; gap: 14px; }
.topbar-title { font-size: 15px; font-weight: 700; color: var(--bp-navy); }

.topbar-right { display: flex; align-items: center; gap: 14px; }

.admin-meta      { text-align: right; }
.admin-meta-name { font-size: 13px; font-weight: 600; color: var(--bp-navy); }
.admin-meta-role { font-size: 10.5px; color: var(--bp-red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; }

.admin-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--bp-navy); color: white; font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.hamburger-btn { display: none; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--bp-navy); padding: 4px; line-height: 1; }

/* ── Page content area ────────────────────── */
.admin-content { flex: 1; padding: 28px 30px; }

/* ── Page header ──────────────────────────── */
.page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.page-header h1 { font-size: 20px; font-weight: 800; color: var(--bp-navy); }
.page-header-actions { display: flex; gap: 10px; }

/* ── Stat cards ───────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 26px; }

.stat-card { background: white; border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 14px; }

.stat-icon-box { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }

.icon-navy  { background: rgba(0,38,99,0.08); }
.icon-red   { background: rgba(200,16,46,0.08); }
.icon-gold  { background: rgba(212,175,55,0.10); }
.icon-green { background: rgba(16,185,129,0.08); }

.stat-body       { min-width: 0; }
.stat-label      { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 3px; }
.stat-value      { font-size: 28px; font-weight: 800; color: var(--bp-navy); line-height: 1; }
.stat-sub        { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ── Dashboard two-col row ────────────────── */
.dash-row { display: grid; grid-template-columns: 1fr 300px; gap: 18px; align-items: flex-start; }

/* ── Admin card ───────────────────────────── */
.admin-card { background: white; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; }

.card-head { padding: 14px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.card-head h3 { font-size: 13.5px; font-weight: 700; color: var(--bp-navy); }
.card-head a  { font-size: 12px; color: var(--bp-red); text-decoration: none; font-weight: 600; }

.card-body { padding: 18px; }

/* ── Activity feed ────────────────────────── */
.activity-row { display: flex; gap: 12px; align-items: flex-start; padding: 12px 18px; border-bottom: 1px solid var(--border); }
.activity-row:last-child { border-bottom: none; }
.activity-row:hover { background: var(--bp-cream); }

.activity-dot   { width: 7px; height: 7px; border-radius: 50%; background: var(--bp-red); margin-top: 5px; flex-shrink: 0; }
.activity-text  { font-size: 13.5px; color: var(--text-dark); flex: 1; line-height: 1.4; }
.activity-sub   { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.activity-time  { font-size: 11px; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; padding-top: 1px; }
.activity-empty { padding: 32px 18px; text-align: center; color: var(--text-muted); font-size: 14px; }

/* ── Quick action buttons ─────────────────── */
.quick-actions { display: flex; flex-direction: column; gap: 9px; }

.quick-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.15s;
  border: 2px solid transparent;
}

.quick-btn.q-primary { background: var(--bp-red); color: white; }
.quick-btn.q-primary:hover { background: var(--bp-red-dark); transform: translateY(-1px); }
.quick-btn.q-secondary { background: white; color: var(--bp-navy); border-color: var(--border); }
.quick-btn.q-secondary:hover { border-color: var(--bp-navy); }

/* ── Pending alert ────────────────────────── */
.pending-alert { background: #FFFBEB; border: 1px solid #FDE68A; border-radius: var(--radius-sm); padding: 14px 16px; }
.pending-alert-title { font-size: 13px; font-weight: 700; color: #92600A; margin-bottom: 4px; }
.pending-alert-body  { font-size: 12px; color: #B45309; }
.pending-alert a     { color: #92600A; font-weight: 700; text-decoration: none; font-size: 12px; display: inline-block; margin-top: 6px; }

/* ── Badges ───────────────────────────────── */
.badge { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2px; white-space: nowrap; }

.badge-live      { background: #D1FAE5; color: #065F46; }
.badge-pending   { background: #FEF3C7; color: #92400E; }
.badge-rejected  { background: #FEE2E2; color: #991B1B; }
.badge-suspended { background: #F3F4F6; color: #374151; }
.badge-free      { background: #EFF6FF; color: #1E40AF; }
.badge-premium   { background: #FEF9C3; color: #854D0E; }
.badge-upcoming  { background: #EDE9FE; color: #4C1D95; }
.badge-ongoing   { background: #D1FAE5; color: #065F46; }
.badge-past      { background: #F3F4F6; color: #374151; }

/* ── Filter bar ───────────────────────────── */
.filter-bar { display: flex; gap: 9px; flex-wrap: wrap; align-items: center; padding: 12px 18px; border-bottom: 1px solid var(--border); background: var(--bp-cream); }

.filter-bar input,
.filter-bar select { padding: 7px 10px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; font-family: inherit; color: var(--text-dark); background: white; outline: none; transition: border-color 0.15s; }

.filter-bar input[type="text"] { min-width: 180px; }
.filter-bar select             { min-width: 130px; }
.filter-bar input:focus,
.filter-bar select:focus       { border-color: var(--bp-navy); }

.filter-count { font-size: 12px; color: var(--text-muted); margin-left: auto; white-space: nowrap; }

/* ── Table ────────────────────────────────── */
.table-wrap { overflow-x: auto; }

.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }

.admin-table th {
  text-align: left;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  padding: 10px 13px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.admin-table td { padding: 12px 13px; border-bottom: 1px solid var(--border); color: var(--text-dark); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bp-cream); }

.cell-name    { font-weight: 600; color: var(--bp-navy); }
.cell-sub     { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.cell-icon    { font-size: 20px; }

/* ── Row action buttons ───────────────────── */
.row-actions { display: flex; gap: 5px; }

.act-btn { padding: 5px 9px; font-size: 11.5px; font-weight: 600; border-radius: 5px; border: 1.5px solid transparent; cursor: pointer; font-family: inherit; transition: all 0.12s; white-space: nowrap; line-height: 1.4; }

.act-approve { background: #D1FAE5; color: #065F46; border-color: #6EE7B7; }
.act-approve:hover { background: #A7F3D0; }

.act-reject  { background: #FEE2E2; color: #991B1B; border-color: #FCA5A5; }
.act-reject:hover { background: #FECACA; }

.act-edit    { background: #EFF6FF; color: #1D4ED8; border-color: #93C5FD; }
.act-edit:hover { background: #DBEAFE; }

.act-delete  { background: #F9FAFB; color: #6B7280; border-color: #E5E7EB; }
.act-delete:hover { background: #FEE2E2; color: #991B1B; border-color: #FCA5A5; }

/* ── Pagination ───────────────────────────── */
.pagination-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-top: 1px solid var(--border); font-size: 12.5px; color: var(--text-muted); }
.page-btns { display: flex; gap: 4px; }
.page-btn { padding: 5px 10px; border: 1.5px solid var(--border); border-radius: 6px; background: white; cursor: pointer; font-size: 12.5px; color: var(--text-dark); font-family: inherit; transition: all 0.12s; }
.page-btn:hover:not(:disabled):not(.active) { border-color: var(--bp-navy); color: var(--bp-navy); }
.page-btn.active   { background: var(--bp-navy); color: white; border-color: var(--bp-navy); }
.page-btn:disabled { opacity: 0.35; cursor: default; }

/* ── Table empty state ────────────────────── */
.table-empty { padding: 56px 20px; text-align: center; color: var(--text-muted); }
.table-empty .empty-icon { font-size: 40px; display: block; margin-bottom: 12px; }

/* ── Form layout (two-column) ─────────────── */
.form-layout { display: grid; grid-template-columns: 1fr 300px; gap: 20px; align-items: flex-start; }
.form-main   { display: flex; flex-direction: column; gap: 14px; }
.form-aside  { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 80px; }

.form-section { background: white; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; }

.form-section-head { padding: 12px 18px; border-bottom: 1px solid var(--border); background: var(--bg-light); }
.form-section-head h3 { font-size: 12px; font-weight: 700; color: var(--bp-navy); text-transform: uppercase; letter-spacing: 0.6px; }

.form-section-body { padding: 18px; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

.form-group         { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.form-group:last-child { margin-bottom: 0; }
.form-group.span-2  { grid-column: span 2; }
.form-group.span-3  { grid-column: span 3; }

.f-label      { font-size: 12.5px; font-weight: 600; color: var(--bp-navy); }
.f-label .req { color: var(--bp-red); margin-left: 2px; }

.f-input, .f-select, .f-textarea {
  padding: 9px 11px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-family: inherit;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.15s;
  width: 100%;
}

.f-input:focus, .f-select:focus, .f-textarea:focus { outline: none; border-color: var(--bp-navy); }
.f-input.invalid, .f-select.invalid { border-color: var(--bp-red); background: #FFF5F5; }
.f-textarea { min-height: 88px; resize: vertical; }
.f-hint     { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── Photo inputs ─────────────────────────── */
.photo-rows { display: flex; flex-direction: column; gap: 8px; }
.photo-row  { display: flex; gap: 8px; align-items: center; }
.photo-row .f-input { flex: 1; }
.photo-thumb { width: 38px; height: 38px; border-radius: 6px; border: 1.5px solid var(--border); object-fit: cover; flex-shrink: 0; display: none; }

/* ── Hours grid ───────────────────────────── */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 5px 6px 5px 0; vertical-align: middle; }
.hours-day-label { font-size: 13px; font-weight: 600; color: var(--bp-navy); width: 86px; padding-left: 0 !important; }
.hours-sep { font-size: 12px; color: var(--text-muted); padding: 0 8px !important; }
.hours-time { padding: 7px 9px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; font-family: inherit; width: 105px; color: var(--text-dark); }
.hours-time:focus { outline: none; border-color: var(--bp-navy); }
.hours-time:disabled { background: var(--bg-light); opacity: 0.5; }
.hours-closed-lbl { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--text-muted); cursor: pointer; padding-left: 10px !important; white-space: nowrap; }

/* ── Price range ──────────────────────────── */
.price-group { display: flex; gap: 8px; }
.price-radio { display: none; }
.price-label { padding: 8px 20px; border: 2px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; font-size: 16px; font-weight: 800; color: var(--text-muted); transition: all 0.15s; user-select: none; }
.price-label:hover { border-color: var(--bp-navy); color: var(--bp-navy); }
.price-radio:checked + .price-label { border-color: var(--bp-navy); background: var(--bp-navy); color: white; }

/* ── Tags / chips ─────────────────────────── */
.chips-box { display: flex; flex-wrap: wrap; gap: 6px; padding: 7px 9px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); min-height: 42px; cursor: text; transition: border-color 0.15s; }
.chips-box:focus-within { border-color: var(--bp-navy); }

.chip { display: inline-flex; align-items: center; gap: 4px; background: var(--bp-navy); color: white; padding: 4px 10px; border-radius: 14px; font-size: 12px; font-weight: 600; }
.chip-x { background: none; border: none; color: rgba(255,255,255,0.75); cursor: pointer; font-size: 15px; line-height: 1; padding: 0; }
.chip-x:hover { color: white; }

.chips-text { border: none; outline: none; font-size: 13px; font-family: inherit; flex: 1; min-width: 80px; background: transparent; }

.preset-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.preset-tag { padding: 4px 10px; border: 1.5px solid var(--border); border-radius: 12px; font-size: 12px; font-weight: 600; cursor: pointer; background: white; color: var(--text-muted); transition: all 0.12s; font-family: inherit; }
.preset-tag:hover { border-color: var(--bp-navy); color: var(--bp-navy); }
.preset-tag.on    { background: var(--bp-navy); color: white; border-color: var(--bp-navy); }

/* ── Btn disabled ─────────────────────────── */
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ── Toast ────────────────────────────────── */
.toast-wrap { position: fixed; bottom: 22px; right: 22px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; max-width: 360px; pointer-events: none; }

.toast { background: #1E293B; color: white; padding: 11px 15px; border-radius: 9px; font-size: 13.5px; box-shadow: 0 4px 20px rgba(0,0,0,0.25); display: flex; align-items: center; gap: 9px; animation: toastIn 0.2s ease; pointer-events: auto; }
.toast.success { border-left: 3px solid #10B981; }
.toast.error   { border-left: 3px solid #EF4444; }
.toast.info    { border-left: 3px solid var(--bp-gold); }

@keyframes toastIn { from { transform: translateX(14px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ── Confirm modal ────────────────────────── */
.modal-bg { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 8000; display: flex; align-items: center; justify-content: center; padding: 20px; }

.modal-box { background: white; border-radius: var(--radius); width: 100%; max-width: 420px; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.18); }

.modal-head { padding: 16px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.modal-head h3 { font-size: 15px; font-weight: 700; color: var(--bp-navy); }
.modal-close { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--text-muted); padding: 2px 4px; }
.modal-close:hover { color: var(--text-dark); }

.modal-body { padding: 18px; }
.modal-body .form-group { margin-bottom: 12px; }
.modal-body .form-group:last-child { margin-bottom: 0; }
.modal-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

.modal-foot { padding: 13px 18px; border-top: 1px solid var(--border); display: flex; gap: 10px; justify-content: flex-end; }

/* ── Responsive ───────────────────────────── */
@media (max-width: 1100px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .dash-row { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .form-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .form-aside .admin-card { flex: 1 1 220px; }
}

@media (max-width: 768px) {
  .admin-sidebar { left: -256px; transition: left 0.25s ease; }
  .admin-sidebar.open { left: 0; }
  .admin-main { margin-left: 0; }
  .hamburger-btn { display: flex !important; align-items: center; }
  .admin-content { padding: 16px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .form-group.span-2, .form-group.span-3 { grid-column: 1; }
  .filter-bar { gap: 7px; }
  .filter-bar input[type="text"] { min-width: 140px; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .topbar-right .admin-meta { display: none; }
  .hours-table td:nth-child(3) { display: none; }
}

/* ============================================
   B3: ADMIN ANALYTICS STYLES
   ============================================ */

/* Perlu Tindakan */
.tindakan-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.tindakan-item { display:flex; align-items:center; gap:12px; padding:12px 14px; background:#F7F8FA; border-radius:var(--radius-sm); border:1px solid var(--border); text-decoration:none; transition:background 0.15s; }
.tindakan-item:hover { background:#EEF2FF; border-color:#C7D2FE; }
.tindakan-icon { font-size:22px; flex-shrink:0; }
.tindakan-body { flex:1;min-width:0 }
.tindakan-count { font-size:22px; font-weight:800; color:var(--bp-navy); line-height:1; }
.tindakan-label { font-size:12px; color:var(--text-muted); margin-top:2px; }
.tindakan-item.has-action .tindakan-count { color:var(--bp-red); }

/* Category bar chart */
.chart-row { display:flex; align-items:center; gap:10px; padding:6px 0; }
.chart-label { width:130px; font-size:12.5px; color:var(--text-dark); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; flex-shrink:0; }
.chart-track { flex:1; height:10px; background:#EEF0F3; border-radius:10px; overflow:hidden; }
.chart-fill { height:100%; border-radius:10px; background:linear-gradient(90deg, var(--bp-navy) 0%, #1A5A9A 100%); transition:width 0.6s ease; }
.chart-val { width:36px; text-align:right; font-size:12.5px; font-weight:700; color:var(--text-dark); flex-shrink:0; }

/* Top listings by views */
.top-list { display:flex; flex-direction:column; gap:8px; }
.top-row { display:flex; align-items:center; gap:10px; padding:8px 10px; background:#F7F8FA; border-radius:8px; text-decoration:none; }
.top-row:hover { background:#EEF2FF; }
.top-rank { width:24px; text-align:center; font-size:13px; font-weight:800; color:var(--text-muted); flex-shrink:0; }
.top-name { flex:1; min-width:0; font-size:13px; font-weight:600; color:var(--text-dark); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.top-views { font-size:12px; color:var(--text-muted); flex-shrink:0; }

/* Analytics 2-col row */
.analytics-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:16px; }
@media(max-width:900px) { .analytics-row { grid-template-columns:1fr; } .tindakan-grid { grid-template-columns:1fr; } }
.chart-fill { height:100