/* ===============================
   PAGE / OVERFLOW
=============================== */
body {
    overflow-x: hidden;
}

/* ===============================
   LEFT SIDEBAR
=============================== */
.left-sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 5;

    width: var(--left-width);
    height: calc(100vh - 60px);
    padding: 20px;
    overflow-y: auto;

    background: #fff;
    border-right: 1px solid #ddd;
}

/* ===============================
   IMPORTANT LINKS
=============================== */
.imp-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.imp-links a {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #444;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}

.imp-links a img {
    width: 35px;
    margin-right: 12px;
}

.imp-links a:hover {
    background: #333;
    color: #fff;
}

/* ===============================
   SHORTCUT LINKS
=============================== */
.shortcut-links {
    padding: 10px;
    border-radius: 10px;
    background: #1f1f1f;
    color: #ccc;
}

.shortcut-links p:first-child {
    margin-bottom: 5px;
    font-weight: bold;
}

.sidebar-link {
    position: relative;
}

.sidebar-new-badge {
    margin-left: 8px;
    background: linear-gradient(135deg, #d492fd, #91caff);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 7px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 10px rgba(145, 202, 255, 0.4);
    line-height: 1;
}