.custom-loop-widget {
    width: 100%;
    height: 100px; /* Höhe des Widgets */
    overflow: hidden;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
    border: 1px solid #6EC1E4; /* Optional: Rahmen */
    border-radius: 5px; /* Optional: Abgerundete Ecken */
}

.loop-wrapper {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: transform 0.1s linear;
}

.loop-item {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid transparent;
    background: #fff; /* Hintergrundfarbe */
    font-size: 16px; /* Schriftgröße */
	font-weight: bold;
    color: #6EC1E4; /* Textfarbe */
	background: transparent;
}

.separator {
    width: 35%;
    height: 1px; /* Höhe der Linie */
    background-color: #6EC1E4; /* Farbe der Linie */
    margin: 0px 0; /* Abstand nach oben und unten */
}

/* Beitragslinktexte */
.loop-item a {
    text-decoration: none;
    color: #fff;
	font-weight: normal;
}

/* Beitragslinktexte beim hovern */
.loop-item a:hover {
    text-decoration: none;
    color: #fff;
}
