/* 
  Custom styles for CELPIP Training App 
  Most styling is handled by Tailwind CSS.
*/

/* Scrollbar styling for a cleaner look */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Material Icons vertically center fix */
.material-icons-outlined {
  display: flex;
  align-items: center;
  justify-content: center;
}
