/* Custom CSS for Toastr */
.toast {
    background-color: #2c3e50 !important; /* Dark background */
    color: #ecf0f1 !important; /* Light text color */
    font-size: 16px !important; /* Adjust font size */
    border-radius: 5px !important; /* Round the corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Add shadow */
    padding: 15px; /* Increase padding */
}

.toast-title {
    font-weight: bold;
    color: white !important; /* Gold color for title */
}

.toast-message {
    color: #ecf0f1; /* Light color for message */
}

.toast-success {
    background-color: #3498db !important; /* Green background for success */
}

.toast-error {
    background-color: #e74c3c !important; /* Red background for error */
}

.toast-info {
    background-color: #3498db !important; /* Blue background for info */
}

.toast-warning {
    background-color: #f39c12 !important; /* Yellow background for warning */
}

/* Add animation for slide-in */
.toast {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}
#order-via-whatsapp {
    flex-direction: column;
    gap: 3px;
    color: #000;

  }