/* css styles */

/* Navbar Logo Styling */
.navbar-brand img {
  max-height: 60px;       /* Enlarge logo (default is often restricted) */
  width: auto;            /* Maintain aspect ratio */
  
  /* Gradient: White center -> Orange edges */
  background: radial-gradient(circle, rgba(255,255,255,1) 10%, rgb(233, 84, 32) 80%);
  
  padding: 5px;           /* Space between logo and border */
  border-radius: 8px;     /* Soften the edges */
margin-right: 10px;     /* Space between logo and title */
 
}

/* Ensure navbar fits the larger logo */
.navbar {
  min-height: 80px;
}
