/*
 * FORCE APP BADGES HORIZONTAL - HIGHEST PRIORITY
 * This overrides ALL other CSS
 */

/* Force horizontal layout */
.footer-widget .app-links > div,
.app-links > div,
div.app-links > div {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    gap: 15px !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

/* Force links to be inline */
.app-links a {
    display: inline-block !important;
    float: none !important;
    clear: none !important;
}

/* Force images to proper size */
.app-links img {
    display: block !important;
    max-width: none !important;
}

/* Remove any column styling */
.app-links > div > * {
    width: auto !important;
    flex: 0 0 auto !important;
}
