/* ======== GENERAL ======== */
body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #ffd6e8, #ffe6f9, #fddde6);
    background-size: 300% 300%;
    animation: gradientBG 12s ease infinite;
    margin: 0;
    color: #333;
}

h2 {
  color: #333;
}

.table img {
  border-radius: 8px;
}

.btn-primary {
  background-color: #ff4b5c;
  border: none;
}

.btn-primary:hover {
  background-color: #e74352;
}

.btn-danger {
  border-radius: 50%;
}

/* ======== SCROLLBAR ======== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff80ab, #ff4081);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #f50057, #c51162);
}