.wp-post-tts-wrapper {
    margin: 20px 0 30px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.wp-post-tts-wrapper:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.wp-post-tts-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.wp-post-tts-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.wp-post-tts-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wp-post-tts-text strong {
    font-size: 16px;
    color: #212529;
    margin-bottom: 4px;
}

.wp-post-tts-text span {
    font-size: 13px;
    color: #6c757d;
}

.wp-post-tts-audio {
    width: 100%;
    max-width: 400px;
    height: 40px;
    outline: none;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .wp-post-tts-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wp-post-tts-audio {
        max-width: 100%;
        margin-top: 10px;
    }
}
