/**
 * CF7 Country State City Dropdowns
 * Stylesheet
 */

/* Disabled dropdown styling */
.cf7-csc-country:disabled,
.cf7-csc-state:disabled,
.cf7-csc-city:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	background-color: #f5f5f5;
}

/* Loading state */
.cf7-csc-country option[value=""],
.cf7-csc-state option[value=""],
.cf7-csc-city option[value=""] {
	color: #999;
}

/* Ensure proper spacing */
.wpcf7-form-control-wrap .cf7-csc-country,
.wpcf7-form-control-wrap .cf7-csc-state,
.wpcf7-form-control-wrap .cf7-csc-city {
	width: 100%;
	max-width: 100%;
}

/* Focus state */
.cf7-csc-country:focus:not(:disabled),
.cf7-csc-state:focus:not(:disabled),
.cf7-csc-city:focus:not(:disabled) {
	outline: 2px solid #0073aa;
	outline-offset: 2px;
}

/* Error state */
.cf7-csc-country.wpcf7-not-valid,
.cf7-csc-state.wpcf7-not-valid,
.cf7-csc-city.wpcf7-not-valid {
	border-color: #dc3232;
}




