.sidebar-choose-skin {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 0;
}

.sidebar-choose-skin li {
    list-style: none;
    cursor: pointer;
}

.sidebar-choose-skin li div {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover effect */
.sidebar-choose-skin li div:hover {
    transform: scale(1.1);
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

/* Default Tick (black) for light backgrounds */
.sidebar-choose-skin li.active div::after {
    content: "✔";
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Override tick color for dark background theme */
.sidebar-choose-skin li.active .sidebar-white-theme::after {
    color: #000 !important;
}

/* Remove border change */
.sidebar-choose-skin li.active div {
    border-color: #ccc !important;
    box-shadow: none !important;
}

.sidebar-black-theme  { background: var(--sidebar-bg-black) !important; }
.sidebar-white-theme  { background: var(--sidebar-bg-white) !important; }
.sidebar-purple-theme { background: var(--sidebar-bg-purple) !important; }
.sidebar-blue-theme   { background: var(--sidebar-bg-blue) !important; }
.sidebar-cyan-theme   { background: var(--sidebar-bg-cyan) !important; }
.sidebar-green-theme  { background: var(--sidebar-bg-green) !important; }
.sidebar-orange-theme { background: var(--sidebar-bg-orange) !important; }

