/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f2f2f2;
  color: #000;
  font-size: 15px; /* NAIK dari default */
}

/* HEADER */
.header {
  background: #0b6b3a;
  padding: 12px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-content img {
  height: 48px; /* sedikit lebih besar */
}

.header-content h2 {
  font-size: 14px; /* dari 12px */
  color: #fff;
  text-align: center;
  line-height: 1.4;
  margin: 0 8px;
}

.bold-text {
  font-weight: bold;
}

/* CONTENT */
.content {
  padding: 14px;
}

/* INFO BOX */
.info-box {
  background: #ffffff;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 14px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.info-box h3 {
  font-size: 16px; /* dari 14px */
  margin-bottom: 10px;
}

.login-button {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

/* PERFORASI */
.perforasi-box {
  background: #eaeaea;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px; /* dari 13px */
  margin-bottom: 14px;
}

/* JUDUL */
h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px; /* dari 12px */
  margin-bottom: 18px;
}

table th,
table td {
  border: 1px solid #ddd;
  padding: 8px; /* lebih lega */
  vertical-align: top;
}

table th {
  width: 42%;
  background: #f7f7f7;
  text-align: left;
  font-weight: bold;
}

/* BUTTON DOWNLOAD */
.button {
  display: block;
  width: 100%;
  background: #28a745;
  color: #fff;
  text-align: center;
  padding: 12px; /* lebih nyaman ditekan */
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 18px;
}

/* FOOTER */
.footer {
  background: #0b6b3a; /* sama dengan header */
  text-align: center;
  font-size: 12px;
  padding: 14px 10px;
  color: #ffffff;
}


/* RESPONSIVE TABLE (HP KECIL) */
@media (max-width: 480px) {
  table, tbody, tr, th, td {
    display: block;
    width: 100%;
  }

  table tr {
    margin-bottom: 12px;
    border-bottom: 2px solid #eee;
  }

  table th {
    background: none;
    border: none;
    padding-bottom: 4px;
  }

  table td {
    border: none;
    padding-top: 0;
    padding-bottom: 10px;
  }
}
