/* ==========================================================================
   Dope Target Mass Calculator Widget CSS
   ========================================================================== */

.dc-wrapper {
	max-width: 100%;
	margin: auto;
	font-family: Arial, sans-serif;
}

.dc-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 1px 0px 3px 0px rgba(0,0,0,0.04);
	-webkit-box-shadow: 1px 0px 3px 0px rgba(0,0,0,0.04);
	-moz-box-shadow: 1px 0px 3px 0px rgba(0,0,0,0.04);
}

.dc-field {
	margin-bottom: 30px;
}

.dc-field:last-of-type {
	margin-bottom: 20px;
}

.dc-field label {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .5px;
	color: #64748B;
	font-family: "Inter", Sans-serif;
}

.dc-field select,
.dc-field input[type="number"] {
	width: 100%;
	height: 52px;
	border: 1px solid #E6EBF5;
	border-radius: 8px;
	padding: 0 16px;
	font-size: 16px;
	color: #0B1E5B;
	background: #ffffff;
	outline: none;
	font-weight: 500;
	font-family: "Inter", Sans-serif;
	box-sizing: border-box;
}

.dc-field select:focus,
.dc-field input[type="number"]:focus {
	border-color: #1d4ed8;
}

.dc-btn-calculate {
	width: 100%;
	height: 54px;
	border: none;
	border-radius: 6px;
	background: #10256f;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .8px;
	cursor: pointer;
	margin: 0;
	transition: .3s;
	font-family: "Inter", Sans-serif;
	box-sizing: border-box;
}

.dc-btn-calculate:hover {
	opacity: .92;
}

.dc-result-card {
	margin-top: 24px;
	border: none;
	border-radius: 12px;
	padding: 24px;
	background: #10256f;
	box-sizing: border-box;
	text-align: center;
	color: #ffffff;
}

.dc-result-title {
	font-size: 26px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 6px;
	font-family: "Inter", Sans-serif;
	text-transform: capitalize;
	letter-spacing: 0.5px;
}

.dc-result-subtitle {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 20px;
	line-height: 1.5;
	font-family: "Inter", Sans-serif;
}

.dc-result-subtitle strong {
	font-weight: 700;
	color: #ffffff;
}

.dc-syringe-wrapper {
	margin-top: 15px;
	width: 100%;
	box-sizing: border-box;
}

.dc-syringe-container {
	position: relative;
	width: 100%;
	height: 80px;
	background: #F1F5F9;
	border: 1.5px solid #CBD5E1;
	border-radius: 8px;
	overflow: hidden;
	box-sizing: border-box;
}

.dc-syringe-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #3B82F6;
	transition: width 0.3s ease;
	box-sizing: border-box;
}

.dc-syringe-ticks {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.dc-tick {
	position: absolute;
	width: 1.5px;
	background: #94A3B8;
	box-sizing: border-box;
}

.dc-tick-top {
	top: 0;
}

.dc-tick-bottom {
	bottom: 0;
}

.dc-tick-label {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 11px;
	font-weight: 700;
	color: #0F172A;
	font-family: "Inter", Sans-serif;
	pointer-events: none;
}

.dc-result-warning {
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

.dc-result-warning .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
	margin-right: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 767px) {
	.dc-result-card {
		padding: 20px 16px;
	}
	.dc-result-title {
		font-size: 22px;
	}
	.dc-result-subtitle {
		font-size: 13px;
		margin-bottom: 15px;
	}
	.dc-syringe-container {
		height: 70px;
	}
}
