/* Format Converter Specific Styles */



/* Status Colors */
.text-success {
    color: #38a169;
}

.text-error {
    color: #e53e3e;
}

/* Spinner Adjustments for List */
.spinner-dark {
    border-color: rgba(0, 0, 0, 0.1);
    border-top-color: var(--text-heading);
}

[data-theme="dark"] .spinner-dark {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--text-heading);
}

/* Bulk File List Scrollbar */
#bulk-file-list::-webkit-scrollbar {
    width: 6px;
}

#bulk-file-list::-webkit-scrollbar-track {
    background: transparent;
}

#bulk-file-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

#bulk-file-list::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}