/* Scrollbar styling */
#logContainer::-webkit-scrollbar {
  width: 6px;
}
#logContainer::-webkit-scrollbar-track {
  background: transparent;
}
#logContainer::-webkit-scrollbar-thumb {
  background: #4b5563;
  border-radius: 3px;
}
#logContainer::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

/* Transitions */
.transition {
  transition: all 0.15s ease;
}
