.ap-3ea6c54e-container {
    --ap-color: #000000; /* Fallback to the primary color from global styles */
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 10px 20px;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.ap-3ea6c54e-play-btn {
    background: var(--ap-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.ap-3ea6c54e-play-btn:hover {
    transform: scale(1.05);
}
.ap-3ea6c54e-play-btn svg {
    width: 24px;
    height: 24px;
}

.ap-3ea6c54e-progress-wrap {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 10px;
    font-family: sans-serif;
    font-size: 12px;
    color: #666;
}

.ap-3ea6c54e-progress {
    flex-grow: 1;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.ap-3ea6c54e-progress-bar {
    height: 100%;
    background: var(--ap-color);
    border-radius: 3px;
    width: 0%;
    pointer-events: none;
}

.ap-3ea6c54e-volume-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.ap-3ea6c54e-volume {
    width: 60px;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.ap-3ea6c54e-volume-bar {
    height: 100%;
    background: var(--ap-color);
    border-radius: 3px;
    width: 100%;
    pointer-events: none;
}

@media (max-width: 767px) {
    .ap-3ea6c54e-volume-wrap {
        display: none;
    }
}
