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;
}

/* ── Shared budget modal form styling ──────────────────────────────────────── */
/* Used by Create Budget modal (Index.cshtml) and Add/Edit Budget Item modal   */

.budget-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.budget-modal .input-group-text {
    background: #f8f9fa;
    border-right: none;
    color: #6c757d;
    min-width: 42px;
    justify-content: center;
}

.budget-modal .input-group .form-control,
.budget-modal .input-group .form-select {
    border-left: none;
}

.budget-modal .input-group:focus-within .input-group-text {
    border-color: #86b7fe;
    color: #0d6efd;
}

.budget-modal .input-group:focus-within .form-control,
.budget-modal .input-group:focus-within .form-select {
    border-color: #86b7fe;
    box-shadow: none;
}