/* Dropdown Outline Fix - Removes all outlines from dropdown buttons */

/* Target all dropdown toggles and ensure no outlines */
.dropdown-toggle,
.dropdown-toggle:hover,
.dropdown-toggle:active,
.dropdown-toggle:focus,
.dropdown.active .dropdown-toggle,
.dropdown:hover .dropdown-toggle,
button.dropdown-toggle,
#moreDropdownToggle {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Target specifically the More button by ID */
#moreDropdownToggle {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Ensure no outline on focus for all buttons */
button:focus,
a:focus {
    outline: none !important;
}

/* Additional fix for Firefox which sometimes adds its own focus styles */
*::-moz-focus-inner {
    border: 0 !important;
}

/* Ensure dropdown menu items also have no outline */
.dropdown-item:focus,
.dropdown-menu a:focus {
    outline: none !important;
    box-shadow: none !important;
}
