.animate-dropdown-menu {
  max-height: 0;
  transition: max-height 0.3s ease-out;
}

.animate-dropdown-menu[data-popper-placement="bottom-start"] {
    max-height: 400px;
}

[data-bs-theme="light"] .icon-wrapper {
    background: #f0f0f0;
}

[data-bs-theme="dark"] .icon-wrapper {
    background: #343a40;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service_order_button {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (hover: hover) and (pointer: fine) {
    .service_order_button:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
}

.service_order_button.clicked {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.category-icon {
    transition: transform 0.3s ease;
}

.category-icon.rotate {
    transform: rotate(180deg);
    color: #71aaeb;
}

.badge.badge-custom-success {
    --bs-badge-padding-y: 0.65em;
    --bs-badge-font-size: 0.8em;
}