* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background: transparent !important;
}

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    overflow: hidden;
}

.notifications-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    z-index: 1000;
}

.order-card {
    background: #0672B8;
    border-radius: 10px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.order-card.slide-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.5s ease-in forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.order-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.empty-state {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .notifications-container {
        bottom: 10px;
        right: 10px;
        max-width: 300px;
        gap: 10px;
    }
    
    .order-card {
        padding: 15px 20px;
        min-width: 150px;
    }
    
    .order-number {
        font-size: 2rem;
    }
    
    .order-label {
        font-size: 0.9rem;
    }
}
