@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,
body {
    font-family: "Poppins", sans-serif;
}

#dataTableContainer {
    height: 400px !important;
    overflow-y: scroll;
}

.data-table th {
    background-color: #33aaff !important;
    /* Forces the color to apply */
    color: white !important;
}

.bg-custom{
    background-color: #f19e1e !important;
}
.btn-custom{
    background: #f19e1e !important;
    color: white !important;
}

.text-custom{
    color: #f19e1e !important;
}
.toast {
  border-radius: 12px !important;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}