/* /budget-app/assets/css/style.css */

:root {
  --primary: #0A1F44;   /* dark blue */
  --secondary: #C0C4C7; /* silver */
  --bg-light: #f4f6f9;
}

body {
  background: var(--bg-light);
  font-family: 'Montserrat', sans-serif;
}

/* Navbar */
.navbar {
  background: var(--primary);
}

.navbar-brand {
  font-weight: 600;
}

/* Cards */
.card {
  border: 1px solid var(--secondary);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Buttons */
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #0d2a5c;
  border-color: #0d2a5c;
}

/* Tables */
.table thead {
  background: var(--primary);
  color: #fff;
}

/* Forms */
.form-control,
.form-select {
  border-radius: 8px;
}

/* Active nav link */
.nav-link.active {
  font-weight: 600;
  border-bottom: 2px solid #ffffff;
}

/* Utility text color */
.text-primary {
  color: var(--primary) !important;
}

/* Optional custom badges (not required but available) */
.badge-income {
  background-color: #198754;
}

.badge-expense {
  background-color: #dc3545;
}
