.cap-audio-player {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cap-playpause {
    width: 60px;
    height: 60px;
    background-color: var(--awb-color9, #a6111d); /* Avada Theme-Farbe */
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.cap-playpause:hover {
    background-color: var(--awb-color1-hover, #d41a27);
    transform: scale(1.05);
}

.cap-icon {
    width: 30px;
    height: 30px;
}

.cap-seekbar {
    width: 250px;
    height: 6px;
    accent-color: var(--awb-color9, #a6111d);
}

/* Mobile Optimierung */
@media (max-width: 600px) {
    .cap-audio-player {
        flex-direction: column;
        align-items: stretch;
    }

    .cap-seekbar {
        width: 100%;
    }

    .cap-playpause {
        align-self: center;
    }
}
