/* AI Content Narrator - Professional Modern Design */

.ain-audio-player-wrapper {
    background: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 12px 20px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.ain-audio-player-wrapper:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: #0073aa;
}

.ain-audio-controls {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.ain-play-btn {
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0, 115, 170, 0.3);
}

.ain-play-btn:hover {
    background: #005a87;
    transform: scale(1.05);
}

.ain-play-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.ain-audio-info {
    flex: 1;
}

.ain-status {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ain-progress-bar {
    width: 100%;
    height: 6px;
    background: #f0f2f5;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.ain-progress-fill {
    height: 100%;
    background: #0073aa;
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 10px;
}

.ain-audio-error {
    margin-top: 10px;
    padding: 8px 12px;
    background: #fff5f5;
    border-left: 3px solid #ff4d4d;
    color: #c53030;
    font-size: 13px;
    border-radius: 4px;
}

/* Hide stop button as requested */
.ain-stop-btn {
    display: none !important;
}

@media (max-width: 480px) {
    .ain-audio-player-wrapper {
        padding: 10px 15px;
    }
}