/* ===================================================
   SIMEKAR PWA STYLE - KHUSUS DENAVA
=================================================== */

/* Aktif hanya saat mode PWA */
@media all and (display-mode: standalone) {

  body {
    background: #f4f7f9 !important;
    padding-bottom: 75px;
    overflow-x: hidden;
  }

  /* =========================
     SEMBUNYIKAN ELEMEN WEB
  ========================= */

  header,
  .navbar,
  .top-bar,
  .header,
  .floating-button,
  .running-text,
  .banner-area,
  .sidebar,
  footer {
    display: none !important;
  }

  /* =========================
     KONTEN UTAMA
  ========================= */

  .main-content,
  .content-wrapper,
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px !important;
    margin: 0 !important;
  }

  /* =========================
     CARD STYLE
  ========================= */

  .card,
  .widget,
  .box {
    border-radius: 18px !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06) !important;
    overflow: hidden;
  }

  /* =========================
     MENU APLIKASI
  ========================= */

  .simekar-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 15px;
  }

  .simekar-menu {
    background: white;
    border-radius: 18px;
    padding: 15px 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: .2s;
  }

  .simekar-menu:active {
    transform: scale(0.96);
  }

  .simekar-menu-icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
  }

  .simekar-menu-title {
    font-size: 13px;
    font-weight: 600;
  }

  /* =========================
     HEADER APP
  ========================= */

  .simekar-app-header {
    background: linear-gradient(135deg, #0b5d56, #128277);
    color: white;
    padding: 22px 18px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    margin-bottom: 15px;
  }

  .simekar-app-header h2 {
    margin: 0;
    font-size: 22px;
  }

  .simekar-app-header p {
    margin-top: 6px;
    opacity: .9;
    font-size: 14px;
  }

  /* =========================
     BUTTON INSTALL
  ========================= */

  #installBtn {
    position: fixed;
    bottom: 85px;
    right: 20px;
    z-index: 9999;
    background: #0b5d56;
    color: white;
    border: none;
    padding: 14px 18px;
    border-radius: 50px;
    box-shadow: 0 5px 14px rgba(0,0,0,0.2);
    font-size: 14px;
  }

  /* =========================
     BOTTOM NAVIGATION
  ========================= */

  .simekar-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #ddd;
    z-index: 9999;
  }

  .simekar-bottom-nav a {
    text-decoration: none;
    color: #666;
    font-size: 11px;
    text-align: center;
    flex: 1;
  }

  .simekar-bottom-nav a.active {
    color: #0b5d56;
    font-weight: bold;
  }

  .simekar-bottom-nav i {
    display: block;
    font-size: 20px;
    margin-bottom: 3px;
    font-style: normal;
  }

  /* =========================
     SCROLLBAR MOBILE
  ========================= */

  ::-webkit-scrollbar {
    width: 0;
    background: transparent;
  }

}