.icv-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.icv-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.icv-section {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.icv-section h3 {
    font-size: 0.9em;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icv-section h3 i {
    color: #3498db;
}

.icv-upload {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 20px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafafa;
}

.icv-upload:hover,
.icv-upload.dragover {
    border-color: #3498db;
    background: #f0f7ff;
}

.icv-upload i {
    font-size: 1.6em;
    color: #3498db;
    margin-bottom: 6px;
}

.icv-upload p {
    color: #666;
    font-size: 0.8em;
    margin: 0 0 4px;
}

.icv-hint {
    color: #999;
    font-size: 0.72em;
}

.icv-form-row {
    margin-bottom: 12px;
}

.icv-form-row label {
    display: block;
    font-size: 0.82em;
    color: #555;
    margin-bottom: 5px;
    font-weight: 500;
}

.icv-input-group {
    display: flex;
    gap: 6px;
}

.icv-input-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.icv-input-label {
    font-size: 0.7em;
    color: #94a3b8;
    font-weight: 600;
}

.icv-input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85em;
    outline: none;
    box-sizing: border-box;
}

.icv-input:focus {
    border-color: #3498db;
}

.icv-select {
    width: 100%;
    padding: 7px 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85em;
    background: #fff;
}

.icv-form-row input[type="range"] {
    width: 100%;
    margin-top: 4px;
}

.icv-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.82em;
    color: #555;
}

.icv-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #3498db;
}

.icv-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.icv-btn {
    flex: 1;
    min-width: 70px;
    padding: 9px;
    border: none;
    border-radius: 8px;
    font-size: 0.82em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.icv-btn-primary {
    background: #3498db;
    color: #fff;
}

.icv-btn-primary:hover:not(:disabled) {
    background: #2980b9;
}

.icv-btn-success {
    background: #27ae60;
    color: #fff;
}

.icv-btn-success:hover:not(:disabled) {
    background: #219a52;
}

.icv-btn-outline {
    background: #fff;
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.icv-btn-outline:hover:not(:disabled) {
    background: #fef2f2;
}

.icv-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.icv-usage-info {
    background: #e8f4fd;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 0.8em;
    color: #2c3e50;
    text-align: center;
}

.icv-usage-info i {
    color: #3498db;
    margin-right: 4px;
}

.icv-vip-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(0,0,0,0.75);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    backdrop-filter: blur(2px);
}

.icv-vip-mask-inner {
    text-align: center;
    color: #fff;
    padding: 30px;
}

.icv-vip-mask-icon {
    font-size: 3em;
    margin-bottom: 12px;
}

.icv-vip-mask-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 8px;
}

.icv-vip-mask-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.icv-vip-btn {
    background: #3498db;
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.icv-vip-btn:hover {
    background: #2980b9;
}

.icv-main {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.icv-file-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.icv-placeholder {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 50px 20px;
    text-align: center;
    color: #999;
}

.icv-placeholder i {
    font-size: 3em;
    margin-bottom: 12px;
    color: #bdc3c7;
}

.icv-file-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 14px;
    align-items: center;
}

.icv-file-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #eee;
}

.icv-file-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.icv-file-name {
    font-size: 0.85em;
    font-weight: 600;
    color: #2c3e50;
    word-break: break-all;
}

.icv-file-meta {
    font-size: 0.75em;
    color: #718096;
}

.icv-file-convert {
    font-size: 0.8em;
    color: #27ae60;
    font-weight: 600;
}

.icv-file-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.icv-file-actions .icv-btn {
    padding: 5px 10px;
    font-size: 0.75em;
    min-width: auto;
}

.icv-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75em;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}

.icv-status-pending {
    background: #f1f5f9;
    color: #64748b;
}

.icv-status-processing {
    background: #dbeafe;
    color: #1e40af;
}

.icv-status-done {
    background: #d1fae5;
    color: #065f46;
}

.icv-tips {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.icv-tips h4 {
    font-size: 0.95em;
    color: #2c3e50;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icv-tips h4 i {
    color: #f39c12;
}

.icv-tip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.icv-tip-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    border-left: 3px solid #3498db;
}

.icv-tip-item strong {
    display: block;
    font-size: 0.85em;
    color: #2c3e50;
    margin-bottom: 3px;
}

.icv-tip-item p {
    font-size: 0.75em;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .icv-container {
        grid-template-columns: 1fr;
    }
    .icv-tip-grid {
        grid-template-columns: 1fr;
    }
    .icv-file-card {
        grid-template-columns: 60px 1fr;
    }
    .icv-file-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: flex-end;
    }
}
