.wartezeit.inline {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
}

.wartezeit.inline .wartezeit-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

.wartezeit.inline p {
    margin: 0;
    padding: 0;
}

.wartezeit.inline .status-icon {
    margin-right: 5px; /* Abstand zum Text */
}


.wartezeit-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 10px 0px 10px 0px; 
}

.status-icon {
    border-radius: 50%;
    display: inline-block;
    height: 13px !important;
    width: 13px !important;
    background-color: currentColor;
    position: relative;
    transform: none;
    margin-right: 5px; /* Leichter Abstand zum Text */
}

.status-icon:after {
    animation: status-pulse 2s infinite;
    background: currentColor;
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    width: 100%;
}

.wartezeit {
    font-size: 14px; 
    line-height: 1.4; 
    margin: 5px 0;
}

.wartezeit p {
    margin: 0; /* Entferne Standardabstände */
    padding: 0; /* Entferne zusätzliches Padding */
}

.wartezeit .wartezeit-text {
    font-weight: bold; /* Hervorhebung der Wartezeit */
}

.wartezeit .contact-link {
    color: #fff; /* Weißer Text */
    text-decoration: none; 
    font-size: 14px; 
    display: inline-block; 
}

.wartezeit .contact-link:hover {
    color: #ccc; /* Helleres Weiß beim Hover */
}

@keyframes status-pulse {
    0% {
        opacity: 0.7;
    }
    65% {
        opacity: 0;
        transform: scale(2.7);
    }
    100% {
        opacity: 0;
    }
}

