.autoscroll-links-container {
    height: 300px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    background: #fff;
}

.autoscroll-links-wrapper {
    position: relative;
}

.autoscroll-links {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.autoscroll-links li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.autoscroll-links li:last-child {
    border-bottom: none;
}

.autoscroll-links li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.autoscroll-links li:hover {
    background-color: #f5f5f5;
}

/* Fade effect at top and bottom */
.autoscroll-links-container::before,
.autoscroll-links-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    z-index: 1;
    pointer-events: none;
}

.autoscroll-links-container::before {
    top: 0;
    background: linear-gradient(to bottom, #fff, transparent);
}

.autoscroll-links-container::after {
    bottom: 0;
    background: linear-gradient(to top, #fff, transparent);
}