
/* Main container */
.welcome-dashboard-container {
    width: 100%;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
  }
  
  /* Header section */
  .welcome-header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  /* Header left section (logo) */
  .welcome-header-logo-container {
    display: flex;
    align-items: center;
  }
  
  .welcome-header-logo-container img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
  }
  
  /* Header right section (secure badges) */
  .welcome-header-right-section {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  
  /* Secure badge items */
  .welcome-secure-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .welcome-secure-badge:hover {
    background-color: #f5f5f5;
  }
  
  .welcome-secure-badge i {
    font-size: 18px;
    width: 20px;
    text-align: center;
  }
  
  /* FDIC Insured icon */
  .welcome-secure-badge .fa-shield-alt {
    color: #2e7d32; /* Darker green */
  }
  
  /* SSL Lock icon */
  .welcome-secure-badge .fa-lock {
    color: #1565c0; /* Blue */
  }
  
  .welcome-secure-badge h6 {
    margin: 0;
    font-size: 13px;
    color: #333333;
    font-weight: 500;
    line-height: 1.3;
  }
  
  /* Mobile menu icon */
  .welcome-mobile-menu-icon {
    list-style: none;
    display: none;
    margin-left: 15px;
  }
  
  .welcome-mobile-menu-icon i {
    cursor: pointer;
    font-size: 22px;
    color: rgb(50, 50, 50);
    transition: transform 0.3s ease;
  }
  
  .welcome-mobile-menu-icon i:hover {
    transform: scale(1.1);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .welcome-header-right-section {
      display: none; /* Hide secure badges on mobile */
    }
    
    .welcome-mobile-menu-icon {
      display: block; /* Show menu icon on mobile */
    }
    
    .welcome-header-logo-container img {
      height: 35px;
    }
  }
  
  @media (max-width: 480px) {
    .welcome-header-main {
      padding: 12px 15px;
    }
    
    .welcome-header-logo-container img {
      height: 30px;
    }
  }
     main {
    min-height: calc(100vh - 184px);
}