#converton-converter {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.cv-section { text-align: center; }

.cv-section h3, .cv-section h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cv-hint {
    text-align: center;
    color: #6e6e73;
    font-size: 13px;
    margin: -0.5rem 0 1rem;
    line-height: 1.5;
}

#drop-zone {
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

#drop-zone.cv-drag {
    border-color: #4e73df;
    background: #f8f9ff;
}

.cv-icon { font-size: 48px; color: #4e73df; margin-bottom: 1rem; }
.cv-icon-ok { color: #28a745; }

#drop-zone p { color: #7f8c8d; margin-bottom: 1.5rem; }

#converton-file-input { display: none; }

.cv-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.cv-btn-primary { background: #4e73df; color: white; }
.cv-btn-primary:hover { background: #3d5fc4; }
.cv-btn-success { background: #28a745; color: white; margin-bottom: 1rem; }

.cv-result-info {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 0.75rem;
}

.cv-filename { color: #4e73df; font-weight: 500; margin-top: 0.5rem; }

.cv-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 14px;
    color: #64748b;
}

#converton-progress-percent { color: #4e73df; font-weight: 600; }

.cv-progress-track {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

#converton-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4e73df, #224abe);
    transition: width 0.5s ease;
}

.cv-emoji { font-size: 32px; margin: 1rem 0; }

.cv-link-btn {
    background: none;
    border: none;
    color: #4e73df;
    cursor: pointer;
    text-decoration: underline;
    font-size: 14px;
}

.cv-error {
    color: #e74c3c;
    text-align: center;
    margin-top: 1rem;
    font-size: 14px;
}

@media (max-width: 640px) {
    #converton-converter { padding: 1rem; }
}
