/* Optional tiny tweaks */
.jumbotron { border-radius: .75rem; }
.dropdown-menu { margin-top: .25rem; }
.stat-box div {
    min-width: 90px;
    border-radius: 8px;
    transition: background 0.3s ease;
  }
  .stat-box div:hover {
    background: rgba(0, 123, 255, 0.1);
  }
  .card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }
  
  .btn:hover {
    transform: scale(1.03);
  }
  
  section h2 {
    font-weight: 700;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
