.pointer-effect {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 30;
    transition: background 0.3s;
}

.list-item-custom {
    position: relative;
    padding-left: 1rem;
    /* Adjust padding to make space for the pseudo-element */
}

.list-item-custom::before {
    content: "▹";
    position: absolute;
    left: 0px;
    color: #64ffda;
    /* Change this to your desired color */
}

.pointer-effect {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 30;
    transition: background 0.3s;
}

.active {
    color: #38bdf8;
    /* Active link color */
}

.outer-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    /* Adjust as needed */
    height: 150px;
    /* Adjust as needed */
    border: 3px solid #64ffda;
    border-radius: 50%;
    padding: 5px;
    margin-bottom: 20px;
}

.inner-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}