/**
 * Audio Extractor - Tool-specific styles
 */

/* Video Preview */
.video-preview {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-secondary, #111113);
    border: 1px solid var(--border, #27272a);
}

.video-preview__player {
    width: 100%;
    max-height: 360px;
    display: block;
    background: #000;
}

/* File Info */
.file-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary, #111113);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border, #27272a);
}

.file-info__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    color: var(--accent, #22c55e);
    flex-shrink: 0;
}

.file-info__details {
    flex: 1;
    min-width: 0;
}

.file-info__name {
    font-weight: 500;
    color: var(--text-primary, #e4e4e7);
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-info__meta {
    font-size: 0.875rem;
    color: var(--text-secondary, #71717a);
    margin: 0;
}

/* Action Buttons */
.action-buttons {
    margin-bottom: 1.5rem;
}

/* Reset Container */
.reset-container {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border, #27272a);
}

/* Form Helper Text */
.form-helper {
    font-size: 0.75rem;
    color: var(--text-secondary, #71717a);
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 640px) {
    .video-preview__player {
        max-height: 240px;
    }

    .file-info {
        flex-direction: column;
        text-align: center;
    }

    .file-info__name {
        white-space: normal;
        word-break: break-word;
    }
}
