.animate-dropdown-menu-new-order {
  max-height: 0;
  transition: max-height 0.3s ease-out;
}

.animate-dropdown-menu-new-order[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;
}

.category-label-new-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 6px 12px;
    border-radius: var(--bs-border-radius-xl) !important;

    font-size: 1rem;
    font-weight: 500;

    text-decoration: none;

    color: rgba(255,255,255,0.75);

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);

    transition: all .15s ease;

    white-space: nowrap;
}

.category-label-new-order svg {
    width: 16px;
    height: 16px;
    opacity: 0.85;
}

.category-label-new-order:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
    transform: translateY(-1px);
}

.category-label-new-order.active {
    background: rgba(113, 170, 235, 0.28);
    color: #fff;
    border: 1px solid rgba(113, 170, 235, 0.35);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}