/* Nav Dropdowns */
.navContent ul li ul a {
    white-space: normal !important;
    overflow: visible !important;
    word-wrap: break-word; /* Ensures the text breaks into a new line if necessary */
    padding-right: 10px; /* Adds some space to the right */
    padding-left: 10px;  /* Adds some space to the left */
}

@media only screen and (min-width: 768px) {
    .navContent ul li ul {
        min-width: 300px !important; /* Increase the width of the dropdown */
        right: auto !important;
        padding: 5px; /* Adds padding for spacing inside the dropdown */
    }
}