@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

@keyframes colorShift {

    0%,
    100% {
        background-color: #0099cc;
    }

    50% {
        background-color: #00b3cc;
    }
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ff3399;
    opacity: 0.1;
}

.icon-pulse {
    animation: iconPulse 2s infinite ease-in-out;
}

.badge-color-shift {
    animation: colorShift 3s infinite ease-in-out;
}

.number-container {
    position: relative;
    height: 2rem;
    width: 2.5rem;
    overflow: hidden;
}

.number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    font-family: monospace;
    color: #1f2937;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.banner-container {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.banner {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.banner:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.timer-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 153, 204, 0.15);
}

.timer-box:hover {
    border-color: rgba(0, 153, 204, 0.4) !important;
}

.timer-box:last-child:hover {
    border-color: rgba(255, 51, 153, 0.4) !important;
    box-shadow: 0 4px 12px rgba(255, 51, 153, 0.15);
}

/* Urgency states using brand colors */
.urgency-warning {
    background-color: rgba(255, 51, 153, 0.05) !important;
}

.urgency-critical {
    animation: pulse 1s ease-in-out infinite;
    background-color: rgba(255, 51, 153, 0.1) !important;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Shake animation for urgency */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-2px);
    }

    75% {
        transform: translateX(2px);
    }
}