/* Base alert style */
.alert.alert-warning.pending-order-alert {
    position: relative;
    background: #fff8e1;
    border-left: 5px solid #ff9800;
    color: #5c4400;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(255, 152, 0, 0.15);
    font-size: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Subtle hover effect */
.alert.alert-warning.pending-order-alert:hover {
    background: #fff3cd;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.25);
}

/* Blinking red dot */
.blinking-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ff1744; /* vivid red */
    box-shadow: 0 0 8px rgba(255, 23, 68, 0.8);
    animation: blink 1s infinite;
}

/* Blink animation */
@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.3;
    }
}

/* Alert link styling */
.alert-link {
    margin-left: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #d84315;
    background: #fff3cd;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

.alert-link:hover {
    color: #fff;
    background-color: #d84315;
    text-decoration: none;
}
