#seafarer-cv-builder {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    max-width: 1100px;
    background: #fff;
    margin: 20px auto;
}
.scv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}
.scv-styling { display: flex; align-items: center; gap: 8px; }
.scv-styling span { font-size: 14px; color: #6b7280; }
.color-btn {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
    box-shadow: 0 0 0 1px #d1d5db;
}
.scv-actions { display: flex; gap: 10px; }
.scv-btn-pdf {
    background: #059669;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
.scv-btn-pdf:hover { background: #047857; }
.scv-btn-save {
    background: #2563eb;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
.scv-btn-save:hover { background: #1d4ed8; }
.scv-body { display: flex; }
.scv-sidebar {
    width: 300px;
    padding: 20px;
    border-right: 1px solid #e5e7eb;
    background: #fafafa;
}
.scv-photo {
    width: 150px; height: 150px;
    border: 2px dashed #d1d5db;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.scv-photo-label {
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
}
#scv-photo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}
.scv-field { 
    width: 100%; 
    padding: 10px 8px; 
    margin-bottom: 10px; 
    border: none;
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
    font-size: 14px;
}
.scv-field:focus { outline: none; border-bottom-color: #2563eb; }
.scv-field-bold { 
    font-weight: 600; 
    font-size: 18px; 
    text-align: center;
}
.scv-content { flex: 1; padding: 20px; }
.scv-tabs { 
    display: flex; 
    gap: 2px; 
    border-bottom: 2px solid #1e3a8a; 
    margin-bottom: 20px;
}
.scv-tab {
    padding: 10px 20px;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}
.scv-tab.active { background: #1e3a8a; color: white; }
.scv-tab-content { display: none; }
.scv-tab-content.active { display: block; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
#scv-summary {
    width: 100%;
    min-height: 200px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-family: inherit;
}
.scv-add-btn {
    background: #f3f4f6;
    border: 1px dashed #d1d5db;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 16px;
}
.scv-add-btn:hover { background: #e5e7eb; }
.scv-doc-item { 
    margin-bottom: 16px;
    padding: 14px;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}
.scv-doc-item label { 
    display: block; 
    font-weight: 600; 
    margin-bottom: 8px;
    color: #1e3a8a;
}
.scv-doc-upload { margin-bottom: 6px; }
.scv-doc-name { 
    display: block;
    font-size: 13px; 
    color: #059669;
    margin-top: 4px;
}
.scv-note { color: #6b7280; font-size: 14px; margin-bottom: 16px; }
.scv-exp-item, .scv-skill-item {
    padding: 12px;
    background: #f9fafb;
    border-radius: 6px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.scv-exp-item input, .scv-skill-item input {
    flex: 1;
    padding: 6px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}
.scv-remove { 
    background: #ef4444; 
    color: white; 
    border: none; 
    padding: 6px 10px; 
    border-radius: 4px; 
    cursor: pointer;
}