.pq-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    font-family: Roboto, sans-serif;
}

.pq-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
	align-items: end;
}

.pq-left {
    width: 60%;
}

.pq-left h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
}

.pq-left p {
    font-size: 14px;
    color: #000;
	font-weight: 400;
	margin-bottom: 0px !important;
}

.pq-right {
    width: 45%;
}

.pq-right label {
    font-size: 13px;
    color: #555;
    display: block;
    margin-bottom: 5px;
}

.pq-right select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.pq-unit-toggle label{
	color: #000000;
    font-size: 12px;
    font-weight: 400;
}

/* Table Style */
.pq-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.pq-table th {
    background: #f2f2f2;
    padding: 16px;
    text-align: left;
    font-weight: 400;
    border-right: 1px solid #EBEBEB;
	color: #000;
}

.pq-table th:last-child {
    border-right: none;
    text-align: center;
}

.pq-table td {
    padding: 15px;
    border-top: 1px solid #EBEBEB;
    border-right: 1px solid #EBEBEB;
    vertical-align: middle;
}

.pq-table td:last-child {
    border-right: none;
    text-align: center;
}

/* Weight input */
.pq-table input[type="text"] {
    width: 100%;
    height: 40px;
    padding: 8px 10px;
    border: 1px solid #EBEBEB;
    border-radius: 0px;
    font-size: 14px;
	box-shadow: none;
	font-weight: 400;
    color: #444444;
}

/* Currency field */
.pq-currency {
    display: flex;
    align-items: center;
}

/* .pq-currency span {
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: #ffffff;
    border: 1px solid #EBEBEB;
    border-right: none;
    font-weight: 500;
	color: #75757D;
    font-size: 14px;
    font-weight: 600;
} */
.pq-currency-label {
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: #ffffff;
    border: 1px solid #EBEBEB;
    color: #75757D;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}
.pq-currency input {
    border-left: none !important;
}

/* Dimension fields */
.pq-dimension {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pq-dimension input {
    width: 90px;
}

.pq-x {
    font-weight: bold;
    color: #777;
	width: 8%;
}

/* Action column */
.pq-action-col {
    width: 100px;
}

/* Plus button */
.pq-add-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #0D6EFD;
    background: #0D6EFD1A;
    color: #2d6cdf;
    font-size: 22px;
    border-radius: 0px;
    cursor: pointer;
	padding: 0px;
	font-weight: 300;
}

.pq-add-btn:hover {
    background: #2d6cdf;
    color: #fff;
}
.pq-btn-wrapper {
    text-align: center;
    margin-top: 25px;
}

.pq-btn {
    background: #0d6efd;
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 0px;
    font-weight: 700;
    cursor: pointer;
	font-size: 16px;
}

.pq-btn:hover {
    background: #155bc4;
}


/* //Courier Booking */


.estimate-wrapper {
            max-width: 1100px;
            margin: 40px auto;
            padding: 30px;
            border: 2px dashed #cbd5e1;
            background: #f8fafc;
            font-family: Arial, sans-serif;
        }

        .estimate-row {
            display: flex;
            margin-bottom: 25px;
            align-items: flex-start;
        }

        .estimate-left {
            width: 30%;
            padding-right: 20px;
        }

        .estimate-left h4 {
            font-size: 15px;
            margin: 0 0 5px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .estimate-left p {
            font-size: 12px;
            color: #666;
            margin: 0;
        }

        .estimate-right {
            width: 70%;
        }

        .estimate-right select,
        .estimate-right input {
            width: 100%;
            padding: 10px;
            border: 1px solid #d1d5db;
            border-radius: 4px;
            font-size: 14px;
        }

        .two-col {
            display: flex;
            gap: 15px;
        }

        .two-col > div {
            flex: 1;
        }

        /* Dimension Table */
        .dimension-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }

        .dimension-table th {
            background: #e5e7eb;
            padding: 10px;
            font-size: 13px;
            text-align: left;
        }

        .dimension-table td {
            padding: 10px;
            border: 1px solid #e5e7eb;
        }

        .dimension-inputs {
            display: flex;
            gap: 5px;
            align-items: center;
        }

        .dimension-inputs input {
            width: 70px;
        }

        .add-btn {
            background: #2563eb;
            color: #fff;
            border: none;
            padding: 8px 12px;
            cursor: pointer;
            border-radius: 4px;
            font-size: 16px;
        }

        .estimate-btn {
            display: block;
            margin: 30px auto 0;
            background: #2563eb;
            color: #fff;
            border: none;
            padding: 12px 40px;
            font-size: 14px;
            border-radius: 4px;
            cursor: pointer;
        }

        .estimate-btn:hover {
            background: #1d4ed8;
        }

        @media(max-width:768px){
            .estimate-row {
                flex-direction: column;
            }
            .estimate-left,
            .estimate-right {
                width: 100%;
            }
        }