body {
    font-family: 'Inter', sans-serif;
}

.sidebar {
    width: 260px;
    height: 100vh;
    background: #111111;
    color: #fff;
    padding: 25px 20px;
    position: fixed;
}

.sidebar-brand {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 40px;
}

.sidebar-brand span {
    font-weight: 300;
    color: #0b93dc;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    margin-bottom: 10px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 15px;
    color: #cfcfcf;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.sidebar-menu a i {
    font-size: 16px;
    min-width: 20px;
}

.sidebar-menu a:hover {
    background: rgba(11, 147, 220, 0.15);
    color: #ffffff;
}

.sidebar-menu a.active {
    background: #0b93dc;
    color: #fff;
}

.sidebar-footer {
    position: absolute;
    bottom: 25px;
    width: calc(100% - 40px);
}

.sidebar-footer a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 15px;
    color: #ff6b6b;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.sidebar-footer a:hover {
    background: rgba(255, 107, 107, 0.15);
}
