/* =====================================
   GP Complaint — shared styles
   Includes fix for the mobile bug where the
   native <input type="date"> renders blank:
   on some Android WebViews the date field's
   text color inherits transparent/white from
   a parent style; force a visible color and a
   sane min-height so the picker icon + value
   are both visible on small screens.
===================================== */
.gp-complaint-box input[type="date"] {
	color: #222 !important;
	-webkit-text-fill-color: #222;
	min-height: 44px;
	background: #fff;
}

.gp-complaint-box input[type="date"]::-webkit-datetime-edit,
.gp-complaint-box input[type="date"]::-webkit-datetime-edit-fields-wrapper {
	color: #222 !important;
}

@media (max-width: 480px) {
	.gp-complaint-box input[type="date"] {
		font-size: 15px;
		padding: 10px;
	}
}
