/* Custom Scrollbar for a cleaner look */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track {
	background: #1e293b; 
}
::-webkit-scrollbar-thumb {
	background: #475569; 
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: #64748b; 
}

/* Specific light scrollbar for snippet boxes to match dark themes closely */
.custom-scrollbar::-webkit-scrollbar-track {
	background: rgba(15, 23, 42, 0.5); 
}
.custom-scrollbar::-webkit-scrollbar-thumb {
	background: #334155; 
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
	background: #475569; 
}

/* Specific UI adjustments for textareas */
textarea {
	tab-size: 4;
	caret-color: #3b82f6;
}

/* Ensure background transitions for tabs are smooth */
.tab-pane {
    transition: opacity 0.25s ease-in-out;
}