:root {
    --flixer-sidebar: #263442;
}

body {
    background: #f5f6f8;
}

.app-sidebar {
    width: 260px;
    min-height: 100vh;
    background: var(--flixer-sidebar);
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1000;
}

.app-logo {
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: .04em;
}

.app-sidebar .nav-link {
    color: #94a3b8;
    font-weight: 600;
    padding: .78rem 1.5rem;
}

.app-sidebar .nav-link.active,
.app-sidebar .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.app-main {
    margin-left: 260px;
    min-height: 100vh;
}

.topbar {
    height: 72px;
    background: #fff;
    border-bottom: 1px solid var(--bs-border-color);
}

.content-wrap {
    padding: 1.5rem;
}

.metric-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .65rem;
}

.drag-handle {
    cursor: grab;
}

.keyword-pill {
    display: inline-flex;
    gap: .35rem;
    align-items: center;
    margin: .15rem;
}

@media (max-width: 991px) {
    .app-sidebar {
        position: static;
        width: 100%;
        min-height: auto;
    }
    .app-main {
        margin-left: 0;
    }
}
