.afc-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
    background: #f8f9fa;
}
.afc-upload-area:hover {
    border-color: #2196F3;
    background: rgba(33, 150, 243, 0.05);
}
.afc-upload-area.afc-dragover {
    border-color: #2196F3;
    background: rgba(33, 150, 243, 0.1);
}
.afc-upload-area.afc-file-loaded {
    display: none;
}
.afc-uploaded-file-card {
    display: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}
.afc-uploaded-file-card.afc-visible {
    display: flex;
    align-items: center;
    gap: 20px;
}
.afc-uploaded-file-icon {
    font-size: 48px;
    flex-shrink: 0;
}
.afc-uploaded-file-details {
    flex: 1;
    min-width: 0;
}
.afc-uploaded-file-name {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}
.afc-uploaded-file-meta {
    font-size: 13px;
    opacity: 0.9;
}
.afc-uploaded-file-replace {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.afc-uploaded-file-replace:hover {
    background: rgba(255, 255, 255, 0.3);
}
.afc-upload-icon {
    font-size: 48px;
    color: #2196F3;
    margin-bottom: 10px;
}
.afc-upload-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}
.afc-upload-hint {
    font-size: 13px;
    color: #666;
}
.afc-file-info-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
}
.afc-file-info-card h4 {
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.afc-file-info-card h4 i {
    color: #2196F3;
}
.afc-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.afc-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.afc-info-label {
    font-size: 12px;
    color: #666;
}
.afc-info-value {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
.afc-preview-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
}
.afc-preview-section h4 {
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.afc-preview-section h4 i {
    color: #2196F3;
}
.afc-audio-player {
    width: 100%;
    margin-bottom: 15px;
}
.afc-waveform-canvas {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    background: #263238;
}
.afc-params-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
}
.afc-params-section h4 {
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.afc-params-section h4 i {
    color: #faad14;
}
.afc-param-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}
.afc-param-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.afc-param-item label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}
.afc-param-item select {
    padding: 10px 12px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
}
.afc-param-item select:focus {
    outline: none;
    border-color: #2196F3;
}
.afc-progress-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    border: 1px solid #dee2e6;
}
.afc-progress-section.afc-visible {
    display: block;
}
.afc-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.afc-progress-title {
    font-size: 14px;
    font-weight: 500;
}
.afc-progress-percent {
    font-size: 14px;
    color: #2196F3;
    font-weight: 500;
}
.afc-progress-bar {
    width: 100%;
    height: 10px;
    background: #dee2e6;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}
.afc-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2196F3, #2ecc71);
    border-radius: 5px;
    transition: width 0.3s;
    width: 0%;
}
.afc-progress-info {
    font-size: 13px;
    color: #666;
}
.afc-download-section {
    border: 2px solid #2196F3;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
    display: none;
    background: #f8f9fa;
}
.afc-download-section.afc-visible {
    display: block;
}
.afc-download-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2196F3;
}
.afc-download-section h4 i {
    vertical-align: middle;
}
.afc-result-info {
    font-size: 14px;
    margin-bottom: 15px;
    color: #333;
}
.afc-btn-download {
    padding: 12px 35px;
    background: #2196F3;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.afc-btn-download:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.afc-hidden {
    display: none !important;
}
@media (max-width: 768px) {
    .afc-param-row {
        grid-template-columns: 1fr;
    }
    .afc-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .afc-info-grid {
        grid-template-columns: 1fr;
    }
}
