/* ===========================
   GLOBAL STYLE CUSTOM.CSS
   =========================== */

/* ✅ HEADER UTAMA SEMUA HALAMAN */
.header {
  background: linear-gradient(90deg, #1a73e8, #4b7bec); /* gradasi biru elegan */
  color: #fff;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Tombol kembali di header */
.header .back {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url('../imgs/back-white.png') no-repeat center;
  background-size: contain;
}

/* Tambahan opsional: ubah warna teks link di header */
.header a {
  color: #fff;
  text-decoration: none;
}

/* ✅ BODY UMUM */
body {
  background-color: #f5f7fb;
  color: #333;
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* ✅ CARD UMUM (untuk box konten seperti score, pembayaran, dll) */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 15px;
  margin: 15px;
}

/* ✅ TOMBOL UTAMA */
.btn-primary {
  background: linear-gradient(90deg, #1a73e8, #4b7bec);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* ✅ TEKS WARNA UTAMA */
.text-blue {
  color: #1a73e8;
}

.text-muted {
  color: #888;
}

/* === Styling untuk halaman Dompet (Penarikan) === */

<style>
.page44 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 20px 10px 80px;
    box-sizing: border-box;
    font-family: "Poppins", "Segoe UI", sans-serif;
}

/* === Kartu saldo === */
.page44 .bg_white {
    width: 92%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Tombol */
.page44 .btn_box {
    width: 92%;
    max-width: 420px;
    margin: 0 auto 15px auto;
    text-align: center;
}

.page44 .btn_box .btn {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    padding: 14px 0;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #2a9d8f, #00bfa5);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 191, 165, 0.3);
    transition: all 0.3s ease;
}

.page44 .btn_box .btn:hover {
    background: linear-gradient(90deg, #00bfa5, #2a9d8f);
    transform: translateY(-2px);
}

/* Status dan peringatan */
p.tc.mt_5,
p.tc.mt_10,
p.fs_16.hint_top {
    width: 92%;
    max-width: 420px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 10px 15px;
    margin: 10px auto;
    color: #444;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
}

p.tc.mt_5 {
    color: red;
    font-weight: 600;
}

p.fs_16.hint_top img {
    vertical-align: middle;
    margin-right: 8px;
}

@media (max-width: 400px) {
    .page44 .btn_box .btn {
        font-size: 18px;
        padding: 12px 0;
    }
}
</style>



.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: linear-gradient(90deg, #1a73e8, #4b7bec);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.header .back {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  cursor: pointer;
}

.header .title {
  margin: 0;
  font-size: 18px;
}
