html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


/* =====================================================================
   [Áø±¸ ¸®µå] 2È£±â °¡»ó ÀåºÎ ¹× ½Ç½Ã°£ ¿µ¼öÁõ Àü¿ë Ã¶º® ½ºÅ¸ÀÏ½ÃÆ®
   ===================================================================== */
.balance-box {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: left;
}

.balance-title {
    font-size: 14px;
    opacity: 0.8;
}

.balance-amount {
    font-size: 28px;
    font-weight: 800;
    margin-top: 5px;
}

.summary-box {
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.summary-title {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #475569;
    font-weight: 700;
}

.summary-table {
    width: 100%;
    font-size: 13px;
    border-collapse: collapse;
    color: #334155;
}

    .summary-table tr {
        border-bottom: 1px solid #e2e8f0;
    }

    .summary-table td {
        padding: 6px 0;
    }

.history-title {
    font-size: 15px;
    color: #1e293b;
    margin: 0 0 12px 0;
    font-weight: 700;
    text-align: left;
}

.history-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.history-left {
    display: flex;
    flex-direction: column;
}

.history-store {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

.history-date {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.history-right {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.history-amt {
    font-size: 15px;
    font-weight: 800;
}

.history-bal {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}