/* ========================================
   GLOBAL IMAGE STYLES
   ======================================== */

/* Default image sizing - centered with bottom margin */
img {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto 1rem auto;
}

/* Center image captions */
figcaption,
.figure-caption,
caption {
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
  color: #666;
}

/* Exclude navbar images from global img rules */
.navbar-brand img,
.navbar-logo img {
  max-width: none !important;
  display: inline-block !important;
  margin: 0 !important;
}

/* Content images - slightly smaller */
.content img {
  max-width: 60%;
}

/* Inline images - smaller, inline display */
.inline-image img {
  max-width: 40%;
  display: inline-block;
  margin: 0 0.5rem;
}

/* Large images - take up more space */
.large-image img {
  max-width: 90%;
}

/* Meeting-specific images - with border and shadow */
.meeting-image {
  max-width: 50%;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ========================================
   NAVBAR STYLES
   ======================================== */

/* Navbar logo sizing for SVG */
.navbar-brand img,
.navbar-logo img {
  height: 50px !important;
  width: auto !important;
  max-height: none !important;
}

/* Support link styling */
.navbar-nav .nav-link {
  font-size: 1.15rem;
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.2s ease;
}

/* Button-like styling for support link */
.navbar-right .nav-link,
.ms-auto .nav-link {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  margin-left: 10px;
}

/* Support link hover effect */
.navbar-right .nav-link:hover,
.ms-auto .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet and mobile - adjust images */
@media (max-width: 768px) {
  img {
    max-width: 90%;
  }
  
  .content img {
    max-width: 85%;
  }
  
  /* Smaller logo on mobile */
  .navbar-brand img,
  .navbar-logo img {
    height: 40px !important;
  }
  
  /* Smaller support link on mobile */
  .navbar-nav .nav-link {
    font-size: 1rem;
    padding: 8px 15px;
  }
}