/* assets/css/order-tracker.css */

/* Animation for payment buttons in orders table */
@keyframes gentle-pulse-success {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 12px 6px rgba(25, 235, 120, 0.55), 0 0 20px 10px rgba(255, 255, 255, 0.15);
        transform: scale(1.05);
    }
}

.btn-gentle-pulse-success {
    animation: gentle-pulse-success 2.5s ease-in-out infinite;
}

/* Modal styles */
#orders-modal .modal-content {
    height: 80vh;
}

#orders-table {
    flex-grow: 1;
    width: 100%;
}

/* Auth modal enhancements */
.auth-modal-title i {
    color: #7c32ff;
}

#auth-tabs .nav-link.active {
    border-bottom: 3px solid #7c32ff;
    color: #7c32ff;
    font-weight: 600;
}