/* Increase main navigation menu font size */
.WaGadgetMenuHorizontal .menuInner ul.firstLevel > li > a {
    font-size: 22px; /* adjust size as needed */
    padding: 16px 18px; /* increases clickable area */
}
/* Make main navigation menu larger and bold */
.WaGadgetMenuHorizontal .menuInner ul.firstLevel > li > a {
    font-size: 22px !important;   /* Adjust size as needed */
    font-weight: 700 !important;  /* Makes text bold */
    text-transform: none;         /* Keeps normal capitalization (optional) */
}

/* Optional: Increase spacing between menu items */
.WaGadgetMenuHorizontal .menuInner ul.firstLevel > li {
    margin: 0 15px;
}
/* Increase overall content width */
.container {
    max-width: 1600px !important;   /* Default is usually around 1140–1200px */
    width: 95% !important;
}
.WaGadgetLoginButton .loginLink {
    font-size: 16px !important;
    font-weight: 700 !important;
    background-color: #2a5c8a;   /* Change to your brand color */
    color: #ffffff !important;
    padding: 8px 14px;
    border-radius: 4px;
    
}/* Make Login link larger and bold */
.WaGadgetLoginButton .loginLink {
    font-size: 18px !important;
    font-weight: 700 !important;
}

/* If it's displaying as a button */
.WaGadgetLoginButton input[type="submit"] {
    font-size: 18px !important;
    font-weight: 700 !important;
    padding: 8px 16px !important;
}


