html {
  font-size: 14px;
  height: 100%;
}

@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;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

/* Main content area grows to push footer down */
.container {
  flex: 1 0 auto;
}

/* Footer stays at bottom */
footer {
  flex-shrink: 0;
  background-color: #f8f9fa;
  margin-top: auto !important;
}

/* Ensure main content has padding at bottom */
main.pb-3 {
  padding-bottom: 2rem !important;
}

/* Perro Largo brand colors */
:root {
  --pl-green: #3FAE2A;
  --pl-blue: #0066CC;
  --pl-dark: #1a1a1a;
  --pl-light: #f8f9fa;
}

/* Brand styling */
.navbar-brand {
  font-weight: bold;
}

/* Card improvements */
.card {
  margin-bottom: 1rem;
}

/* Alert success styling */
.alert-success {
  border-left: 4px solid var(--pl-green);
}

/* Quick action buttons */
.btn-outline-primary:hover,
.btn-outline-success:hover,
.btn-outline-warning:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}
