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;
}


/* ?? Glass table */
.table {
    width: 100%;
    border-collapse: collapse;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    color: #e2e8f0;
}

.table thead {
    background: rgba(255, 255, 255, 0.08);
}

.table th {
    padding: 14px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.08);
    transition: 0.2s;
}

/* balance */
.balance-positive {
    color: #22c55e;
    font-weight: 600;
}

.balance-negative {
    color: #ef4444;
    font-weight: 700;
}

/* button */
.btn-history {
    background: rgba(255,255,255,0.08);
    color: #e2e8f0;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

    .btn-history:hover {
        background: rgba(255,255,255,0.15);
    }

