.bg-purple {
    background-color: #6f42c1 !important;
}

#csvInput, #jsonOutput {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
}

/* Scrollbar styling */
#csvInput::-webkit-scrollbar, #jsonOutput::-webkit-scrollbar {
    width: 8px;
}

#csvInput::-webkit-scrollbar-track, #jsonOutput::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#csvInput::-webkit-scrollbar-thumb, #jsonOutput::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

#csvInput::-webkit-scrollbar-thumb:hover, #jsonOutput::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.conversion-stats {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
}