/* Custom styles to complement Tailwind */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

input[type=number] {
    -moz-appearance: textfield;
}

body {
    background-color: #FFFFFF;
}

.bg-brand-900 {
    background-color: #37352F;
}

/* Notion-like input removal */
input:focus {
    outline: none;
    box-shadow: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: #e1e1e1;
    border-radius: 5px;
}

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