 /* Reset margins and padding */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Override Shiny's default container padding */
body {
  font-family: Arial, sans-serif;
  background-color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Remove default Bootstrap container padding */
.container-fluid {
  padding: 0 !important;
  margin: 0 !important;
  /*display: flex;
  flex-direction: column;
  min-height: 100vh;*/
  flex: 1;
  width: 100% !important;
  max-width: none !important;
  background-color: white;
}

/* Ensure main content area takes full width */
#app, .shiny-html-output {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
      
      
      .navbar {
        background-color: #047857;
        padding: 0;
        margin: 0;
        margin-bottom: 20px;
        border-radius: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      
      .logo-left {
        flex: 0 0 auto;
      }
      
      /*.logo-left img {
        height: 40px;
        filter: brightness(0) invert(1);
      }*/
      
      .navbar-buttons {
        display: flex;
        gap: 5px;
        flex: 1;
        justify-content: center;
      }
      
      .navbar button {
        background-color: transparent;
        color: white;
        border: none;
        padding: 10px;
        margin: 0 5px;
        border-radius: 15px;
        cursor: pointer;
        font-size: 14px;
        font-weight: bold;
      }
      
      .navbar button:hover {
        background-color:rgba(255, 255, 255, 0.1);
      }
      
      .navbar button.active {
        background-color: #856531;
        color: white;
        font-weight: bold;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      }
      
      .logo-right {
        flex: 0 0 auto;
      }
      
      /*.logo-right img {
        height: 40px;
        filter: brightness(0) invert(1);
      }*/
            
      /*.page-content {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        margin: 10px;
      }*/
      
      .page-title {
        color: #2c3e50;
        border-bottom: 2px solid #3498db;
        padding-bottom: 10px;
        margin-bottom: 20px;
      }
      
      
      /* Footer Styles */
      .footer {
        background-color: black;
        color: #ecf0f1;
        padding: 0;
        margin-top: auto;
        /*width: 100%;*/
      }

      .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /*max-width: 1200px;*/
        margin: 0 auto;
        padding: 10px 20px;
      }
      
      .footer-left {
          display: flex;
         flex: 0.75;
        text-align: left;
      }
      
      .footer-center {
        flex: 1.5;
        text-align: center;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0px;
      }
      
      .footer-right {
        flex: 0.75;
        text-align: right;
      }
      
      .footer-logo {
        margin-bottom: 0px;
      }
      
      .footer-text {
        margin: 0;
        font-size: 14px;
        color: #ecf0f1;
      }
      
      .footer-left p,
      .footer-right p {
        margin: 0;
        font-size: 14px;
        color: #bdc3c7;
      }
      
      
/* ==================== LARGE SCREEN OPTIMIZATIONS ==================== */

/* Large Desktop (1440px - 1920px) */
@media (min-width: 1920px) {
  
  /* navbar */
  .navbar {
    min-height: 80px;
  }
  
  /* logos */
  .logo-left img, .logo-right img {
    height: 150px;
  }
  
  /* gap navbar buttons*/
  .navbar-buttons {
    gap: 15px; /* More space between buttons */
  }
  
  .navbar button {
    padding: 30px 50px; /* Larger clickable area */
    font-size: 3.2rem; /* Larger font size */
    border-radius: 30px;
  }
  
  /* Footer - taller with larger content */
  .footer-content {
    max-width: 4500px; 
    margin: 0 auto; /* Center the content */
    padding: 30px 60px;
  }
  
    .footer-left p,
  .footer-right p,
  .footer-text {
    font-size: 3.2rem; /* Larger text */
    line-height: 1.4;
  }
  
  .footer-logo {
    height: 80px; /* Larger footer logos */
  }
  
  
}
  