/* Dosage Query Styles — NO !important */

.dosage-query-wrapper {
	font-family: var(--pcs-font-body, 'Inter', sans-serif);
	width: 100%;
}

.dosage-query-wrapper h3 {
	font-family: var(--pcs-font-heading, 'Inter', sans-serif);
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--pcs-text-color, #333);
}

.pcs-query-form {
	background-color: #f5f8fa;
	color: #333;
	border: none;
	box-shadow: none;
	padding: 30px;
	margin-bottom: 20px;
}

.pcs-query-form .pcs-form-row {
	justify-content: space-between;
}

.pcs-query-form .pcs-input-group {
	align-items: center;
	background-color: #2b4d70;
	border-radius: 25px;
	padding-right: 15px;
}

.pcs-query-form .pcs-input {
	font-family: inherit;
	background-color: transparent;
	border: none;
	width: 120px;
	text-align: right;
}

.pcs-unit-label {
	color: #9cb5cd;
}

.pcs-table-container {
	margin-top: 20px;
	border-radius: 8px;
	overflow: hidden;
}

.pcs-table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
}

.pcs-table th {
	background-color: #36618e;
	color: #fff;
	padding: 12px 15px;
}

.pcs-table td {
	padding: 12px 15px;
	border: 1px solid #dee2e6;
	color: #333;
}

.pcs-table tbody tr:nth-child(even) {
	background-color: #f9f9f9;
}

.pcs-table td:nth-child(2) {
	color: #36618e;
}

/* ============================================================
   RESPONSIVE
   Tablet : max-width 1024px | Mobile : max-width 767px
   ============================================================ */

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
	.pcs-query-form {
		padding: 22px;
	}
	.pcs-query-form .pcs-input {
	font-family: inherit;
		width: 100px;
	}
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
	.pcs-query-form {
		padding: 18px;
	}
	.pcs-query-form .pcs-form-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.pcs-query-form .pcs-input-group {
		width: 100%;
		box-sizing: border-box;
	}
	.pcs-query-form .pcs-input {
	font-family: inherit;
		flex: 1;
		width: auto;
		text-align: left;
	}
	.pcs-table th,
	.pcs-table td {
		padding: 10px 12px;
		font-size: 13px;
	}
	.pcs-table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
}

/* ---------- Small mobile fine‑tuning ---------- */
@media (max-width: 380px) {
	.pcs-query-form {
		padding: 14px;
	}
	.pcs-table th,
	.pcs-table td {
		padding: 8px 10px;
		font-size: 12px;
	}
}

.peptide-calc-suite-wrapper input[type="number"]::-webkit-inner-spin-button,
.peptide-calc-suite-wrapper input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.peptide-calc-suite-wrapper input[type="number"] {
	-moz-appearance: textfield;
}
