/* --- Tracking Section Responsive Layout --- */
.tracking-section {
    padding: 100px 0 60px;
    /* space below header + breathing space */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 60vh;
    background-color: transparent;
}

/* Responsive spacing */
@media (max-width: 992px) {
    .tracking-section {
        padding: 180px 0 50px;
    }
}

@media (max-width: 576px) {
    .tracking-section {
        padding: 170px 0 40px;
    }
}

/* Tracking container style */
.tracking-section .container {
    background-color: azure;
    border-radius: 12px;
    padding: 2rem;
    max-width: 700px;
}

.showNorecordFound,
.empty-message-tracking-content {
    background-color: #ffe0e0;
    color: #b00020;
    padding: 12px 20px;
    margin: 15px 0;
    border-left: 5px solid #b00020;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.awb-card {
    max-width: 70%;
    margin: 20px auto;
    border: 1px solid #e0e0e0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 15px;
}

.awb-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
}

/* Only apply width & layout to the table */
.awb-card .table {
    width: 100%;
    margin: 0 auto;
    table-layout: fixed;
    border: 1px solid #000;
}

.awb-card th,
.awb-card td {
    word-wrap: break-word;
    border: 1px solid #000;
}

#txtawbno {
    height: 100px !important;
    border-radius: 10px !important;
}

/* 🔹 Responsive Adjustments */
@media (max-width: 768px) {
    .awb-card {
        max-width: 95%;
        padding: 12px;
    }

    .awb-card h4 {
        font-size: 1.25rem;
    }

    .awb-card .table {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .awb-card {
        max-width: 100%;
        margin: 15px auto;
        padding: 10px;
    }

    .awb-card h4 {
        font-size: 1.1rem;
    }

    .awb-card .table {
        font-size: 0.6rem;
    }
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


/* remove number input spinners */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}