body {
    background: #f4f6f9;
}

.summary-card {
    border: 0;
    border-radius: 16px;
    color: #fff;
}

.summary-card .card-body {
    min-height: 150px;
}

.summary-sales {
    background: linear-gradient(135deg, #198754, #20c997);
}

.summary-orders {
    background: linear-gradient(135deg, #0d6efd, #6ea8fe);
}

.summary-credit {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.summary-customers {
    background: linear-gradient(135deg, #6f42c1, #d63384);
}

.table thead th {
    white-space: nowrap;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.product-card {
    border: 1px solid #dee2e6;
    border-radius: 14px;
    background: #fff;
}

.product-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.product-pos-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    background: #fff;
}

.receipt {
    /* max-width: 360px;
    margin: 0 auto; */
    width: 100%;
    font-size: 14px;
        padding: 20px;
    border: 1px solid #80808030;
}

.receipt h2,
.receipt p {
    margin-bottom: 0.4rem;
}

.login-card {
    max-width: 420px;
    margin: 70px auto;
}

.pos-summary strong {
    font-size: 1rem;
}

.bg-orange {
    background-color: #fd7e14;
}

.tracking-progress {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.tracking-step {
    position: relative;
    text-align: center;
}

.tracking-step::after {
    content: '';
    position: absolute;
    top: 14px;
    left: calc(50% + 18px);
    width: calc(100% - 36px);
    height: 4px;
    background: #dee2e6;
    border-radius: 999px;
}

.tracking-step:last-child::after {
    display: none;
}

.tracking-dot {
    width: 28px;
    height: 28px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    background: #ced4da;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #dee2e6;
}

.tracking-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
}

.tracking-step.completed .tracking-dot,
.tracking-step.current .tracking-dot {
    background: #198754;
    box-shadow: 0 0 0 2px #19875433;
}

.tracking-step.completed .tracking-label,
.tracking-step.current .tracking-label {
    color: #212529;
}

.tracking-step.completed::after {
    background: #198754;
}

.tracking-step.current .tracking-dot {
    background: #0d6efd;
    box-shadow: 0 0 0 2px #0d6efd33;
}

@media (max-width: 767.98px) {
    .tracking-progress {
        grid-template-columns: 1fr;
    }

    .tracking-step::after {
        top: auto;
        bottom: -14px;
        left: 50%;
        width: 4px;
        height: 18px;
        transform: translateX(-50%);
    }
}
.card{
    padding: 2
    0px;
}

.receipt-logo{
    /* width: 100px; */
    /* width: 207px; */
    max-width: 300px;
    margin-bottom: 30px;
    opacity: 9%;
    position: absolute;
    top: 30%;
    left: 20%;
    /* z-index: -13; */
    rotate: 45deg;
    border-radius: 10px;
}
.about-developer{
    display: flex;
    justify-content: space-between;
}
.about-developer p{
    font-size: 12px;
    margin-top: 20px;
}

@media print {
  @page {
    size: 80mm auto; /* 80mm thermal paper */
    margin: 0;
  }

  body {
    /* width: 80mm; */
    margin: 0;
    padding: 0;
  }

  .receipt {
    width: 100%;
  }
}

/* @media print {

    body * {
        visibility: hidden;
    }

    .receipt, .receipt * {
        visibility: visible;
    }

    .receipt {
        position: absolute;
        left: 0;
        top: 0;
        width: 80mm;
    }

    @page {
        size: 80mm auto;
        margin: 0;
    }
} */