/**
 * AceClan Dark Theme - Sidebar Layout
 * Fonts: Rajdhani (headings/brand), Inter (body)
 * Colors: #23242c bg, #14151b darker, #1a1b23 sidebar, #32343b cards, #FF4700 accent
 */

:root {
    --sidebar-width: 260px;
    --header-height: 42px;
    --banner-height: 160px;
    --bs-body-bg: #23242c;
    --bs-body-color: #cecece;
    --bs-card-bg: #32343b;
    --bs-dark: #14151b;
    --ace-accent: #FF4700;
    --ace-accent-hover: #e63f00;
    --ace-sidebar: #1a1b23;
    --ace-sidebar-hover: #252630;
    --ace-sidebar-active: #2d2e3a;
    --bs-border-color: #3d3f47;
    --bs-link-color: var(--ace-accent);
    --bs-link-hover-color: var(--ace-accent-hover);
}

/* ==================== BASE ==================== */

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 0.875rem;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    margin: 0;
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

p { margin-bottom: 0.75rem; }

small, .small { font-size: 0.78rem; }

.text-muted { color: #6c6e7a !important; }

/* ==================== SITE HEADER ==================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: #0d0d0d;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 1050;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-center {
    display: flex;
    align-items: center;
}

.social-strip {
    display: flex;
    align-items: center;
    gap: 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 0;
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.social-icon:hover {
    color: #ffffff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==================== SITE BANNER ==================== */

.site-banner {
    width: 100%;
    height: var(--banner-height);
    background: url('/assets/images/system/background.png');
    background-position-y: 70%;
    background-size: 75%;
    background-position-x: center;
    background-color: #000000;
    border-bottom: 1px solid #ff4700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.banner-logo:hover {
    transform: scale(1.05);
}

.banner-logo img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
}

/* ==================== SIDEBAR ==================== */

.sidebar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
    background: var(--ace-sidebar);
    border-right: 1px solid var(--bs-border-color);
    display: flex;
    flex-direction: column;
    z-index: 1040;
    transition: transform 0.3s ease;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
}

.nav-section {
    margin-bottom: 8px;
    padding: 0 12px;
}

.nav-section-title {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #6c6e7a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 12px 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 16px;
    margin: 1px 0;
    border-radius: 6px;
    color: #b0b2ba;
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

.nav-item:hover {
    background: var(--ace-sidebar-hover);
    color: #ffffff;
}

.nav-item.active {
    background: var(--ace-sidebar-active);
    color: var(--ace-accent);
}

.nav-item.active i {
    color: var(--ace-accent);
}

.nav-item i {
    width: 18px;
    text-align: center;
    font-size: 0.8rem;
    color: #5a5c66;
    transition: color 0.15s ease;
}

.nav-item:hover i {
    color: #ffffff;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--bs-border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-block {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex: 1;
    min-width: 0;
}

.user-avatar {
    font-size: 1.8rem;
    color: #6c6e7a;
}

.user-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.user-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role {
    font-size: 0.7rem;
    color: #6c6e7a;
}

.btn-logout {
    color: #6c6e7a;
    font-size: 1rem;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.15s ease;
    text-decoration: none;
}

.btn-logout:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* ==================== MAIN CONTENT ==================== */

.main-wrapper {
    margin-left: var(--sidebar-width);
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
}

.content-area {
    flex: 1;
    padding: 24px;
}

.topbar-btn {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 1.1rem;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
}

.topbar-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--ace-accent);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 10px;
    line-height: 1.2;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: #9a9caa;
    font-size: 1.2rem;
    padding: 8px;
    cursor: pointer;
}

/* ==================== MOBILE ==================== */

@media (max-width: 991.98px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .main-wrapper {
        margin-left: 0;
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        top: var(--header-height);
        background: rgba(0, 0, 0, 0.5);
        z-index: 1035;
    }

    .sidebar-overlay.show {
        display: block;
    }

    .content-area {
        padding: 16px;
    }

    .header-center {
        display: none;
    }

    .site-banner {
        height: 100px;
    }

    .site-banner .banner-logo img {
        height: 70px;
    }
}

/* ==================== CARDS ==================== */

.card {
    background-color: #2a2b33;
    border: 1px solid rgba(156, 156, 156, 0.1);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.card-header {
    background-color: #35363f;
    border-bottom: 1px solid rgba(255, 71, 0, 0.3);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 16px;
    border-radius: 3px 3px 0 0;
    color: #ffffff;
}

.card-header h4,
.card-header h5,
.card-header h6,
.card-header .h4,
.card-header .h5,
.card-header .h6 {
    font-size: 0.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-body {
    padding: 16px;
}

.card-body.p-0 {
    padding: 0 !important;
}

.card-body.pt-0 {
    padding-top: 0 !important;
}

/* ==================== BUTTONS ==================== */

.btn-primary {
    background-color: var(--ace-accent);
    border-color: var(--ace-accent);
    color: #ffffff;
    font-weight: 500;
    font-size: 0.8rem;
    border-radius: 4px;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--ace-accent-hover);
    border-color: var(--ace-accent-hover);
    box-shadow: 0 2px 8px rgba(255, 71, 0, 0.3);
}

.btn-outline-primary {
    color: var(--ace-accent);
    border-color: var(--ace-accent);
    font-size: 0.8rem;
    border-radius: 4px;
    padding: 8px 16px;
}

.btn-outline-primary:hover {
    background-color: var(--ace-accent);
    border-color: var(--ace-accent);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 71, 0, 0.3);
}

.btn-outline-light {
    color: #ffffff;
    border-color: rgba(156, 156, 156, 0.3);
    font-size: 0.8rem;
    border-radius: 4px;
}

.btn-outline-light:hover {
    background-color: #22232b;
    border-color: transparent;
    color: #ff4700;
}

.btn-sm {
    padding: 5px 12px;
    font-size: 0.75rem;
}

/* ==================== FORMS ==================== */

.form-control, .form-select {
    background-color: #1a1b22;
    border: 1px solid rgba(156, 156, 156, 0.15);
    color: #cecece;
    font-size: 0.83rem;
    padding: 8px 12px;
    border-radius: 4px;
    transition: border-color 0.15s ease;
}

.form-control:focus, .form-select:focus {
    background-color: #1a1b22;
    border-color: var(--ace-accent);
    color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 71, 0, 0.1);
    outline: 0;
}

.form-control::placeholder {
    color: #5a5c66;
}

.form-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: #9a9caa;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.input-group-text {
    background-color: #1a1b22;
    border: 1px solid rgba(156, 156, 156, 0.15);
    color: #6c6e7a;
    font-size: 0.8rem;
}

/* ==================== TABLES ==================== */

.table {
    --bs-table-bg: transparent;
    --bs-table-border-color: rgba(156, 156, 156, 0.1);
    color: #cecece;
    font-size: 0.8rem;
    margin-bottom: 0;
}

.table td, .table th {
    padding: 10px 14px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(156, 156, 156, 0.08);
}

.table th {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    background-color: rgba(0, 0, 0, 0.15);
}

.table-sm td, .table-sm th {
    padding: 8px 12px;
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 71, 0, 0.03);
    --bs-table-hover-bg: rgba(255, 71, 0, 0.03);
}

/* Striped rows for stat tables */
.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(0, 0, 0, 0.1);
    --bs-table-striped-bg: rgba(0, 0, 0, 0.1);
}

/* ==================== DROPDOWNS ==================== */

.dropdown-menu {
    background-color: #22232b;
    border: 1px solid rgba(156, 156, 156, 0.15);
    border-radius: 4px;
}

.dropdown-item { color: #cecece; }
.dropdown-item:hover { background-color: #14151b; color: #ffffff; }

/* ==================== LINKS & MISC ==================== */

a { color: var(--ace-accent); text-decoration: none; }
a:hover { color: #ff4700; }

.text-accent { color: var(--ace-accent) !important; }
.bg-darker { background-color: #14151b !important; }

.badge.bg-primary { background-color: var(--ace-accent) !important; }

/* Pagination */
.page-link {
    background-color: var(--bs-card-bg);
    border-color: var(--bs-border-color);
    color: var(--bs-body-color);
}
.page-item.active .page-link {
    background-color: var(--ace-accent);
    border-color: var(--ace-accent);
}

/* Modal */
.modal-content {
    background-color: #22232b;
    border: 1px solid rgba(156, 156, 156, 0.15);
}

/* Scrollbar - matches forum theme */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #333333; }
::-webkit-scrollbar-thumb { background: #ff4700; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: #ff4700; }

.sidebar-nav::-webkit-scrollbar { width: 4px; }

/* ==================== EXPANDABLE NAV GROUPS ==================== */

.nav-group {
    margin: 1px 0;
}

.nav-toggle {
    position: relative;
    cursor: pointer;
}

.nav-toggle .nav-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.55rem;
    color: #4a4c54;
    transition: transform 0.25s ease;
}

.nav-group.open > .nav-toggle .nav-arrow {
    transform: translateY(-50%) rotate(90deg);
    color: var(--ace-accent);
}

.nav-group.open > .nav-toggle {
    color: #ffffff;
    background: var(--ace-sidebar-active);
}

.nav-group.open > .nav-toggle i:first-child {
    color: var(--ace-accent);
}

.nav-submenu {
    display: none;
    padding: 4px 0 8px 0;
    margin-left: 16px;
    border-left: 1px solid #2d2e3a;
}

.nav-group.open > .nav-submenu {
    display: block;
}

.nav-subitem {
    display: block;
    padding: 6px 12px 6px 16px;
    margin: 0;
    color: #7a7c8a;
    text-decoration: none;
    font-size: 0.78rem;
    transition: all 0.15s ease;
    position: relative;
}

.nav-subitem::before {
    content: '•';
    color: #4a4c54;
    margin-right: 8px;
    font-size: 0.9rem;
    line-height: 1;
}

.nav-subitem:hover {
    color: #ffffff;
    padding-left: 20px;
}

.nav-subitem:hover::before {
    color: var(--ace-accent);
}

.nav-subitem.active {
    color: var(--ace-accent);
    border-left: 2px solid var(--ace-accent);
    margin-left: -1px;
    padding-left: 15px;
}

.nav-subitem.active::before {
    color: var(--ace-accent);
}

/* Toggle sub-items (ones that expand nested groups) should NOT have dots */
.nav-toggle-nested::before {
    display: none;
}

/* Nested groups (second level — used for Rosters sub-categories) */

.nav-group-nested {
    margin: 0;
}

.nav-toggle-nested {
    cursor: pointer;
    position: relative;
    padding-right: 28px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    font-weight: 500;
    color: #b0b2ba !important;
    font-size: 0.8rem !important;
    border-left: 2px solid #3d3f47;
    margin-left: -1px;
    transition: all 0.15s ease;
}

.nav-toggle-nested:hover {
    color: #ffffff !important;
    border-left-color: #6c6e7a;
    padding-left: 20px !important;
}

.nav-group-nested.open > .nav-toggle-nested {
    color: #ffffff !important;
    border-left-color: var(--ace-accent);
}

.nav-toggle-nested .nav-arrow-sm {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.5rem;
    color: #4a4c54;
    transition: transform 0.25s ease;
}

.nav-group-nested.open > .nav-toggle-nested .nav-arrow-sm {
    transform: translateY(-50%) rotate(90deg);
    color: var(--ace-accent);
}

.nav-submenu-nested {
    display: none;
    padding: 2px 0 4px 10px;
    border-left: 1px solid #2d2e3a;
    margin-left: 8px;
}

.nav-group-nested.open > .nav-submenu-nested {
    display: block;
}

.nav-subitem-nested {
    display: block;
    padding: 4px 12px;
    margin: 0;
    color: #6a6c7a;
    text-decoration: none;
    font-size: 0.73rem;
    transition: all 0.15s ease;
}

.nav-subitem-nested::before {
    content: '•';
    color: #4a4c54;
    margin-right: 8px;
    font-size: 0.9rem;
    line-height: 1;
}

.nav-subitem-nested:hover {
    color: #ffffff;
    padding-left: 16px;
}

.nav-subitem-nested:hover::before {
    color: var(--ace-accent);
}

.nav-subitem-nested.active {
    color: var(--ace-accent);
}

.nav-subitem-nested.active::before {
    color: var(--ace-accent);
}


/* ==================== HOMEPAGE SPECIFIC ==================== */

.card h5.card-title {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.card h5.card-title a:hover {
    color: var(--ace-accent) !important;
}

.card .badge {
    font-size: 0.65rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 3px;
}

/* Featured post cards within the main card */
.card .card {
    border-radius: 4px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.card .card:hover {
    border-color: rgba(255, 71, 0, 0.2) !important;
    box-shadow: 0 2px 12px rgba(255, 71, 0, 0.05);
}

.card .card .card-body {
    padding: 14px;
}

/* Carousel adjustments */
.carousel-item img {
    border-radius: 4px 4px 0 0;
}

/* Input group styling */
.input-group-text {
    font-size: 0.8rem;
}

/* Active users widget */
.card-body a.text-decoration-none {
    color: var(--ace-accent);
    font-size: 0.8rem;
}

.card-body a.text-decoration-none:hover {
    text-decoration: underline !important;
}

/* General content spacing */
.content-area {
    padding-bottom: 40px;
}

.content-area .row {
    margin-top: 0;
}

.content-area > .card:first-child,
.content-area > .row:first-child {
    margin-top: 0;
}

/* Badge variants */
.badge.bg-secondary {
    background-color: #3d3f47 !important;
    color: #9a9caa;
}

.badge.bg-success {
    background-color: rgba(34, 197, 94, 0.15) !important;
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.badge.bg-warning {
    background-color: rgba(234, 179, 8, 0.15) !important;
    color: #facc15;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.badge.bg-danger {
    background-color: rgba(239, 68, 68, 0.15) !important;
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge.bg-primary {
    background-color: rgba(255, 71, 0, 0.15) !important;
    color: #ff6b35;
    border: 1px solid rgba(255, 71, 0, 0.2);
}

/* ==================== FORUM POST CONTENT ==================== */

.forum-post-content {
    font-size: 0.8rem;
    color: #9a9caa;
    line-height: 1.6;
    max-height: 150px;
    overflow: hidden;
    position: relative;
    padding-bottom: 4px;
}

.forum-post-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #1e1f26);
    pointer-events: none;
}

.forum-post-content img {
    max-width: 100%;
    max-height: 120px;
    height: auto;
    border-radius: 4px;
    margin: 4px 0;
}

.forum-post-content a {
    color: var(--ace-accent);
}

.forum-post-content span,
.forum-post-content div,
.forum-post-content p {
    font-size: inherit !important;
    font-family: inherit !important;
    color: #9a9caa !important;
}

.forum-post-content center {
    text-align: center;
}

.forum-post-content blockquote {
    border-left: 3px solid var(--ace-accent);
    padding: 8px 12px;
    margin: 8px 0;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 4px 4px 0;
}

/* ==================== CHATBOX & MESSAGES ==================== */

.chatbox-message {
    padding: 10px 0;
    border-bottom: 1px solid rgba(156, 156, 156, 0.06);
}

.chatbox-message:last-child {
    border-bottom: none;
}

/* ==================== UTILITY CLASSES ==================== */

.text-success { color: #4ade80 !important; }
.text-danger { color: #f87171 !important; }
.text-warning { color: #facc15 !important; }

.border-subtle { border-color: rgba(156, 156, 156, 0.1) !important; }

/* Separator line */
hr {
    border-color: rgba(156, 156, 156, 0.1);
    opacity: 1;
}

/* Tooltips */
.tooltip-inner {
    background-color: #1a1b22;
    border: 1px solid rgba(156, 156, 156, 0.15);
    font-size: 0.75rem;
    padding: 6px 10px;
}

/* Alert/Flash messages */
.alert {
    border-radius: 4px;
    font-size: 0.8rem;
    padding: 10px 16px;
    border: none;
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border-left: 3px solid #4ade80;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border-left: 3px solid #f87171;
}

.alert-warning {
    background-color: rgba(234, 179, 8, 0.1);
    color: #facc15;
    border-left: 3px solid #facc15;
}

.alert-info {
    background-color: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border-left: 3px solid #60a5fa;
}

/* ==================== PAGE HEADER ==================== */

.page-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(156, 156, 156, 0.1);
}

.page-header h1,
.page-header h2 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.page-header p {
    color: #6c6e7a;
    margin-bottom: 0;
    font-size: 0.83rem;
}

/* ==================== BREADCRUMB ==================== */

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 16px;
    font-size: 0.78rem;
}

.breadcrumb-item a {
    color: #6c6e7a;
}

.breadcrumb-item a:hover {
    color: var(--ace-accent);
}

.breadcrumb-item.active {
    color: #cecece;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #4a4c54;
    content: "›";
}

/* ==================== PAGINATION ==================== */

.page-link {
    background-color: #2a2b33;
    border-color: rgba(156, 156, 156, 0.1);
    color: #cecece;
    font-size: 0.78rem;
    padding: 6px 12px;
    transition: all 0.15s ease;
}

.page-link:hover {
    background-color: #35363f;
    border-color: rgba(255, 71, 0, 0.3);
    color: #ffffff;
}

.page-item.active .page-link {
    background-color: var(--ace-accent);
    border-color: var(--ace-accent);
    color: #ffffff;
}

.page-item.disabled .page-link {
    background-color: #1e1f26;
    border-color: rgba(156, 156, 156, 0.05);
    color: #4a4c54;
}

/* ==================== EMPTY STATES ==================== */

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #6c6e7a;
}

.empty-state i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #3d3f47;
}

.empty-state p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* ==================== AVATAR ==================== */

.avatar {
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(156, 156, 156, 0.1);
}

.avatar-sm { width: 28px; height: 28px; }
.avatar-md { width: 36px; height: 36px; }
.avatar-lg { width: 48px; height: 48px; }

/* ==================== STATUS INDICATORS ==================== */

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.status-dot.online { background-color: #4ade80; box-shadow: 0 0 4px rgba(74, 222, 128, 0.4); }
.status-dot.offline { background-color: #4a4c54; }
.status-dot.away { background-color: #facc15; }

/* ==================== LIST GROUP ==================== */

.list-group-item {
    background-color: transparent;
    border-color: rgba(156, 156, 156, 0.08);
    color: #cecece;
    padding: 12px 16px;
    font-size: 0.83rem;
    transition: background-color 0.15s ease;
}

.list-group-item:hover {
    background-color: rgba(255, 71, 0, 0.03);
}

.list-group-item.active {
    background-color: rgba(255, 71, 0, 0.1);
    border-color: rgba(255, 71, 0, 0.2);
    color: #ffffff;
}

/* ==================== PROGRESS BAR ==================== */

.progress {
    background-color: #1a1b22;
    border-radius: 4px;
    height: 6px;
}

.progress-bar {
    background-color: var(--ace-accent);
    border-radius: 4px;
}

/* ==================== TOASTS ==================== */

.toast {
    background-color: #2a2b33;
    border: 1px solid rgba(156, 156, 156, 0.1);
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

