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;
}

.dashboard-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.welcome-text {
    margin-bottom: 20px;
    font-size: 18px;
    color: #555;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.2s ease;
    cursor: pointer;
}

    .stat-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }

    .stat-card h3 {
        margin-bottom: 5px;
        font-size: 18px;
        font-weight: 600;
    }

    .stat-card p {
        font-size: 24px;
        font-weight: 700;
        margin: 0;
    }

/*AddTransactionPage*/

<style >
.transaction-form {
    max-width: 450px;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: 600;
}

input, select {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
    font-size: 1rem;
}

.btn-primary {
    margin-right: 10px;
}

</style >