/* SVG to PNG Converter Custom Styles */
.dropzone-container {
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    background-color: #f8fafc;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.dropzone-container:hover, .dropzone-container.dragover {
    border-color: #3b82f6;
    background-color: #eff6ff;
}
.dropzone-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: inline-block;
}
.svg-preview-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    background: #ffffff;
}
.preview-box {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background-color: #f8fafc;
    background-image: radial-gradient(#e2e8f0 10%, transparent 10%), radial-gradient(#e2e8f0 10%, transparent 10%);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    position: relative;
}
.preview-box svg {
    max-width: 100%;
    max-height: 400px;
    display: block;
}
.preview-box.transparent {
    background-image: linear-gradient(45deg, #e2e8f0 25%, transparent 25%), linear-gradient(-45deg, #e2e8f0 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #e2e8f0 75%), linear-gradient(-45deg, transparent 75%, #e2e8f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}
.textarea-code {
    font-family: monospace;
    font-size: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.scaler-pill {
    cursor: pointer;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: bold;
    text-align: center;
    transition: all 0.2s;
}
.scaler-pill.active {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}
