/* Delivery Status */
.status-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    margin-bottom: 20px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    z-index: 1;
}

.status-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* Open State */
.status-container.open {
    border-color: rgba(76, 175, 80, 0.6);
    color: #4CAF50;
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(76, 175, 80, 0.1) 100%);
}
.status-container.open .status-dot {
    background-color: #4CAF50;
    box-shadow: 0 0 10px #4CAF50;
}

/* Closed State */
.status-container.closed {
    border-color: rgba(255, 82, 82, 0.6);
    color: #ff5252;
    background: linear-gradient(90deg, rgba(244, 67, 54, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(244, 67, 54, 0.1) 100%);
}
.status-container.closed .status-dot {
    background-color: #ff5252;
    box-shadow: 0 0 10px #ff5252;
}
