.card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.btn {
    border-radius: 30px;
}
.toast {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
}
