body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #060923;
    color: #fff;
}

#wrapper {
    display: flex;
    padding: 5%;
    justify-content: center;
}

/* ===== SIDEBAR ===== */
.sidebar {
    width: 260px;
    background: #0c132b;
    padding: 20px;
    border-radius: 12px;
    height: fit-content;
}

.sidebar h2 {
    margin-bottom: 20px;
    font-size: 22px;
}

.sidebar .item {
    width: 100%;
    background: #111a37;
    border: none;
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-sizing: border-box;
    margin-bottom: 13.3px;
    cursor: pointer;
    transition: .2s;
}

.sidebar .item:hover {
    background: #1a2547;
}

.sidebar .active {
    background: #4beb6b;
    color: #000;
    font-weight: bold;
}