/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
  font-size: 18px; /* bigger default font */
}

/* GLOBAL LAYOUT */
body {
  display: block;  /* allow normal flow, no forced flex */
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 1200px; /* wide but centered */
  margin: 0 auto;
  padding: 20px;
}

/* HEADINGS */
h1, h2, h3 {
  color: #003087;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }

/* BALANCE SECTION */
.balance-box {
  background: #003087;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  text-align: center;
}

.balance-box h2 {
  font-size: 1.4rem;
  font-weight: 400;
}

.balance-box p {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 15px;
}

/* FORMS */
input, select {
  width: 100%;
  padding: 14px;
  margin: 12px 0 24px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1.05rem;
}

input:focus, select:focus {
  border-color: #0070ba;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 112, 186, 0.3);
}

/* BUTTONS */
button {
  display: inline-block;
  background: #0070ba;
  color: #fff;
  padding: 14px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #005c9e;
}

/* TRANSACTIONS */
.transaction {
  padding: 16px;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

.transaction a {
  text-decoration: none;
  color: #333;
}

.transaction a:hover {
  color: #0070ba;
  text-decoration: underline;
}

/* VIEW ALL */
.view-all-btn {
  display: block;
  width: 100%;
  margin: 20px 0;
  background: #fff;
  color: #0070ba;
  border: 2px solid #0070ba;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}

.view-all-btn:hover {
  background: #0070ba;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  body {
    font-size: 16px;
    padding: 15px;
  }
  .container {
    padding: 15px;
  }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  .balance-box p {
    font-size: 2.2rem;
  }
  h1, h2 {
    text-align: center;
  }
}