.induction-card {
    height: 100%;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}

.induction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.induction-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body .card-text {
    flex-grow: 1;
}

.induction-card .btn {
    margin-top: auto;
    align-self: end;
}

.badge {
    font-weight: normal;
}

.svg-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
}