/* Custom CSS for QR Ordering System */


html {
    font-family: Arial, Helvetica, sans-serif !important;
}


/* Card styles */
.card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    font-weight: 600;
}

/* Button styles */
.btn {
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 10px 25px;
}

.btn-primary {
    background-color: #5e72e4;
    border-color: #5e72e4;
}

.btn-primary:hover {
    background-color: #4a5acf;
    border-color: #4a5acf;
}

/* Form styles */
.form-control, .form-select {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
}

.form-control:focus, .form-select:focus {
    border-color: #5e72e4;
    box-shadow: 0 0 0 0.25rem rgba(94, 114, 228, 0.25);
}

/* Table styles */
.table {
    margin-bottom: 0;
}

.table th {
    border-top: none;
    font-weight: 600;
    color: #495057;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar {
        position: static;
        height: auto;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .card {
        margin-bottom: 15px;
    }
}

/* Animation for status changes */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.status-change {
    animation: pulse 0.5s ease;
}

/* QR code display */
.qr-code-container {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
}

.qr-code-container img {
    max-width: 200px;
    height: auto;
}

/* Menu item cards */
.menu-item-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.menu-item-img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

/* Cart quantity controls */
.quantity-control {
    display: flex;
    align-items: center;
}

.quantity-control .btn {
    padding: 5px 10px;
}

.quantity-control input {
    width: 50px;
    text-align: center;
    margin: 0 5px;
}

