#cdf-audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    padding: 10px;
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cdf-audio-container {
    max-width: 800px;
    margin: 0 auto;
}

.cdf-audio-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

#cdf-audio-title {
    font-weight: bold;
    font-size: 14px;
}

#cdf-audio-close,
#cdf-prev-btn,
#cdf-next-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

#cdf-audio {
    width: 100%;
}

.cdf-audio-trigger {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}
