/* ===================================================================
   COMPONENTS/UI.CSS
   General UI Components
   =================================================================== */
/* ===== 25. UI COMPONENTS ===== */

/* ----- 25.1 Dropdowns ----- */
/* NOTE: ALL dropdown styles moved to components/header.css */

/* ----- 25.2 Mod Lists ----- */
.mod-list {
    background-color: #1c2128;
    margin: 0;
    padding: 0;
}

.mod-item {
    background-color: transparent;
}

/* ----- 25.3 Scrollable Elements ----- */
.mod-card-body,
.mod-list,
.expanded-card-body {
    scroll-behavior: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}




/* ===== BOOTSTRAP UI COMPONENT REPLACEMENTS ===== */

/* Badge */
.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

/* Alert */
.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
