/* SvgEditorModal Component Styles */

.SvgEditorModal_svgEditorModalOverlay__DR0KX {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--spacing-md);
}

.SvgEditorModal_svgEditorModal__w__zS {
    background: var(--app-background-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 63vw;
    max-height: 80vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.SvgEditorModal_modalHeader__VnrZ8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--app-background-tertiary);
    background: var(--app-background-secondary);
}

.SvgEditorModal_variantNameInput__9ZnkP {
    flex: 1;
    margin-right: var(--spacing-md);
}

.SvgEditorModal_variantInput__8Jn_x {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--app-background-tertiary);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--app-background-primary);
    color: var(--app-text-primary);
    transition: border-color var(--transition-fast);
}

.SvgEditorModal_variantInput__8Jn_x:focus {
    outline: none;
    border-color: var(--app-primary-color);
    box-shadow: 0 0 0 2px rgba(230, 243, 255, 0.3);
}

.SvgEditorModal_closeBtn__EHO_n {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--app-text-secondary);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.SvgEditorModal_closeBtn__EHO_n:hover {
    background: var(--app-background-tertiary);
    color: var(--app-text-primary);
}

.SvgEditorModal_modalContent__2bTEJ {
    flex: 1;
    padding: var(--spacing-md);
    overflow-y: auto;
}

.SvgEditorModal_visualEditor__MUXrY {
    display: grid;
    grid-template-columns: 1fr 364px;
    gap: var(--spacing-md);
    height: 100%;
}

.SvgEditorModal_previewSection__k_JX7 {
    display: flex;
    flex-direction: column;
}

.SvgEditorModal_previewSection__k_JX7 h3 {
    margin-bottom: var(--spacing-md);
    color: var(--app-text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.SvgEditorModal_iconPreview__oef92 {
    flex: 1;
    border: 1px solid var(--app-background-tertiary);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    background: var(--app-background-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    max-height: 300px;
}

.SvgEditorModal_previewContainer__MGKt2 {
    position: relative;
    display: inline-block;
}

.SvgEditorModal_previewSvg__4Ygfp {
    max-width: 100%;
    max-height: 100%;
    cursor: pointer;
}

.SvgEditorModal_selectionIndicator__ZmvIQ {
    position: absolute;
    border: 2px solid #FF3B30;
    border-radius: 2px;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.6);
}

.SvgEditorModal_previewSvg__4Ygfp svg {
    width: 200px;
    height: 200px;
    max-width: 200px;
    max-height: 200px;
}

.SvgEditorModal_previewSvg__4Ygfp svg * {
    cursor: pointer;
}

.SvgEditorModal_previewSvg__4Ygfp svg *:hover {
    outline: 1px solid #007AFF;
    outline-offset: 1px;
}

.SvgEditorModal_previewSvg__4Ygfp svg *[data-selected="true"] {
    outline: 2px solid #FF3B30;
    outline-offset: 2px;
}

.SvgEditorModal_previewPlaceholder__1GFpJ {
    text-align: center;
    color: var(--app-text-muted);
    font-style: italic;
}

.SvgEditorModal_selectionInfo__n91f_ {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--app-background-secondary);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.SvgEditorModal_selectionInfo__n91f_ p {
    margin-bottom: var(--spacing-xs);
}

.SvgEditorModal_selectionInfo__n91f_ code {
    background: var(--app-background-tertiary);
    padding: 2px 4px;
    border-radius: 3px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

.SvgEditorModal_toolsSection__WGIFc {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-height: 100%;
    overflow-y: auto;
}

.SvgEditorModal_toolsSection__WGIFc h3 {
    margin-bottom: var(--spacing-md);
    color: var(--app-text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.SvgEditorModal_toolGroup__Yhupw {
    border: 1px solid var(--app-background-tertiary);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    background: var(--app-background-secondary);
}

.SvgEditorModal_toolGroup__Yhupw h4 {
    margin-bottom: var(--spacing-md);
    color: var(--app-text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.SvgEditorModal_colorTools____vcZ {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.SvgEditorModal_colorInput__7LVEV {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.SvgEditorModal_colorInput__7LVEV label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--app-text-secondary);
}

.SvgEditorModal_colorInput__7LVEV input[type="color"] {
    width: 100%;
    height: 40px;
    border: 1px solid var(--app-background-tertiary);
    border-radius: var(--radius-md);
    cursor: pointer;
    background: none;
}

.SvgEditorModal_colorInput__7LVEV input[type="color"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Color Palette Styles */
.SvgEditorModal_colorPalette__g0wNz {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.SvgEditorModal_colorPalette__g0wNz label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--app-text-secondary);
}

.SvgEditorModal_colorSwatches__mEEsU {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: var(--app-background-primary);
    border: 1px solid var(--app-background-tertiary);
    border-radius: var(--radius-md);
}

.SvgEditorModal_colorSwatch__2v3r_ {
    width: 24px;
    height: 24px;
    border: 2px solid var(--app-background-tertiary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    background: none;
    padding: 0;
}

.SvgEditorModal_colorSwatch__2v3r_:hover:not(:disabled) {
    border-color: var(--app-text-primary);
    transform: scale(1.1);
    z-index: 1;
}

.SvgEditorModal_colorSwatch__2v3r_:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.SvgEditorModal_colorSwatch__2v3r_:focus {
    outline: 2px solid var(--apple-blue);
    outline-offset: 2px;
}

/* Special styling for transparent color */
.SvgEditorModal_colorSwatch__2v3r_[style*="none"] {
    background: linear-gradient(45deg, #ccc 25%, transparent 25%), 
                linear-gradient(-45deg, #ccc 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #ccc 75%), 
                linear-gradient(-45deg, transparent 75%, #ccc 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
}

/* Category-specific styling */
.SvgEditorModal_primaryColor__3kIuw {
    border-color: var(--apple-blue);
}

.SvgEditorModal_accentColor__Fk7NT {
    border-color: var(--apple-red);
}

.SvgEditorModal_grayscaleColor__9HId2 {
    border-color: var(--apple-gray-5);
}

.SvgEditorModal_commonColor__xOqb3 {
    border-color: var(--apple-gray-3);
}

.SvgEditorModal_projectColor__gSL6v {
    border-color: var(--apple-green);
    border-width: 3px;
}

/* Hex Input Styles */
.SvgEditorModal_hexInput__IvBB_ {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.SvgEditorModal_hexInput__IvBB_ label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--app-text-secondary);
}

.SvgEditorModal_hexForm__Q_Ld6 {
    display: flex;
    gap: var(--spacing-xs);
}

.SvgEditorModal_hexTextField__fQ5u_ {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--app-background-tertiary);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    background: var(--app-background-primary);
    color: var(--app-text-primary);
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

.SvgEditorModal_hexTextField__fQ5u_:focus {
    outline: none;
    border-color: var(--apple-blue);
    box-shadow: 0 0 0 2px rgba(230, 243, 255, 0.3);
}

.SvgEditorModal_hexTextField__fQ5u_:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--app-background-secondary);
}

.SvgEditorModal_hexSubmitBtn__p_lPD {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--apple-blue);
    color: var(--app-text-primary);
    border: 1px solid var(--apple-blue);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.SvgEditorModal_hexSubmitBtn__p_lPD:hover:not(:disabled) {
    background: var(--apple-blue-dark);
    border-color: var(--apple-blue-dark);
}

.SvgEditorModal_hexSubmitBtn__p_lPD:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--app-background-tertiary);
    border-color: var(--app-background-tertiary);
    color: var(--app-text-muted);
}

.SvgEditorModal_strokeTools__e4JjS {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.SvgEditorModal_inputGroup__qDsKI {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.SvgEditorModal_inputGroup__qDsKI label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--app-text-secondary);
}

.SvgEditorModal_inputGroup__qDsKI input {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--app-background-tertiary);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    background: var(--app-background-primary);
    color: var(--app-text-primary);
}

.SvgEditorModal_inputGroup__qDsKI input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.SvgEditorModal_transformTools__F10Jw {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.SvgEditorModal_actionButtons__KlBQk {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.SvgEditorModal_elementsList__qg355 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.SvgEditorModal_elementsCount__NDuNv {
    font-size: 0.875rem;
    color: var(--app-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.SvgEditorModal_elementItem__WX2Ty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm);
    background: var(--app-background-primary);
    border: 1px solid var(--app-background-tertiary);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.SvgEditorModal_elementItem__WX2Ty:hover {
    border-color: var(--app-primary-color);
    background: var(--app-background-secondary);
}

.SvgEditorModal_elementItemSelected__8wuL5 {
    background: rgba(0, 122, 255, 0.1) !important;
    border-color: var(--app-primary-color) !important;
    box-shadow: 0 0 0 1px rgba(0, 122, 255, 0.2);
}

.SvgEditorModal_elementInfo__aZEk2 {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    cursor: pointer;
    padding: var(--spacing-xs) 0;
    border-radius: var(--radius-xs);
    transition: all var(--transition-fast);
    min-width: 0;
}

.SvgEditorModal_elementInfo__aZEk2:hover {
    background: rgba(0, 122, 255, 0.05);
}

.SvgEditorModal_elementInfo__aZEk2:focus {
    outline: 2px solid var(--app-primary-color);
    outline-offset: 1px;
    background: rgba(0, 122, 255, 0.05);
}

.SvgEditorModal_elementType__s_PXf {
    font-weight: 500;
    color: var(--app-text-primary);
    text-transform: capitalize;
}

.SvgEditorModal_elementId__o19gh {
    color: var(--app-text-secondary);
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.75rem;
    opacity: 0.8;
    word-break: break-all;
}

/* Export Buttons */
.SvgEditorModal_exportButtons___jvzX {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.SvgEditorModal_exportButtons___jvzX button.SvgEditorModal_success__O6S3_ {
    background: var(--apple-green) !important;
    border-color: var(--apple-green) !important;
    color: white !important;
}

.SvgEditorModal_errorMessage__3_AGa {
    background: var(--app-danger-light);
    color: var(--app-danger-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    border: 1px solid var(--app-danger-color);
}

.SvgEditorModal_modalActions__G3si7 {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-top: 1px solid var(--app-background-tertiary);
    background: var(--app-background-secondary);
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .SvgEditorModal_visualEditor__MUXrY {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .SvgEditorModal_toolsSection__WGIFc {
        max-height: none;
    }
    
    .SvgEditorModal_modalActions__G3si7 {
        flex-direction: column;
    }
    
    .SvgEditorModal_colorSwatches__mEEsU {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .SvgEditorModal_colorSwatch__2v3r_ {
        width: 20px;
        height: 20px;
    }
}

.FixIconsModal_container__Pyi1e {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.FixIconsModal_inputSection__2pf43 {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.FixIconsModal_input__SpFyk {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-primary, #000);
    background-color: var(--bg-primary, #fff);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.FixIconsModal_input__SpFyk:focus {
    outline: none;
    border-color: var(--primary-color, #4a9eff);
}

.FixIconsModal_input__SpFyk::placeholder {
    color: var(--text-tertiary, #999);
}

.FixIconsModal_submitBtn__EvSDW {
    padding: 8px 16px;
    background-color: var(--primary-color, #4a9eff);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    height: fit-content;
}

.FixIconsModal_submitBtn__EvSDW:hover {
    background-color: var(--primary-hover, #2a7edf);
}

.FixIconsModal_optionsSection__WQB2x {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.FixIconsModal_optionBtn__WYasN {
    padding: 10px 12px;
    background-color: transparent;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-primary, #000);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-family: inherit;
}

.FixIconsModal_optionBtn__WYasN:hover {
    background-color: var(--bg-secondary, #f5f5f5);
    border-color: var(--primary-color, #4a9eff);
}

.FixIconsModal_optionBtn__WYasN:active {
    background-color: var(--primary-color, #4a9eff);
    color: white;
}

.FixIconsModal_description__owOWV {
    margin: 0;
    color: var(--text-secondary, #666);
    font-size: 13px;
    line-height: 1.5;
}


/*# sourceMappingURL=21eed793bd88e9f3.css.map*/