.steps { display: none; }
	.steps.active { display: block; }

	/* Card style */
	.step2.steps, .step3.steps {
	    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	    border-radius: 15px;
	}

	/* Input fields */
	.step_fields input[type="text"],
	.step_fields input[type="url"],
	.step_fields .form-control {
	    width: 100%;
	    padding: 14px;
	    margin-bottom: 15px;
	    border: 1px solid #0000001A;
	    border-radius: 6px;
	    font-size: 16px;
	    font-family: 'Karla';
	}

	/* File Upload */
	.file_upload {
	    width: 100%;
	    padding: 20px;
	    margin-bottom: 15px;
	    border: 2px dashed #ddd;
	    border-radius: 6px;
	    background: #fafafa;
	    text-align: center;
	    font-size: 16px;
	    font-family: 'Karla';
	    cursor: pointer;
	}
	.file_upload:hover {
	    border-color: #bbb;
	}

	/* Preview */
	.preview_wrap {
	    display: flex;
	    flex-wrap: wrap;
	    gap: 10px;
	    margin-bottom: 15px;
	}
	.preview_item {
	    position: relative;
	    width: 100px;
	    height: 100px;
	}
	.preview_item img {
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	    border-radius: 6px;
	    border: 1px solid #ddd;
	}
	.remove_img {
	    position: absolute;
	    top: -6px;
	    right: -6px;
	    background: red;
	    color: #fff;
	    font-size: 14px;
	    font-weight: bold;
	    border-radius: 50%;
	    width: 20px;
	    height: 20px;
	    text-align: center;
	    cursor: pointer;
	    line-height: 20px;
	}

	/* Link toggle */
	.link_toggle {
	    display: block;
	    margin: 20px 0 10px;
	    font-size: 16px;
	    font-family: 'Karla';
	}
	.link_fields { display: none; }

	/* Back button styled similar to next_btn */
	.back_btn {
	    font-size: 20px;
	    font-family: 'Karla';
	    font-weight: 500;
	    width: 49%;
	    text-align: center;
	    color: #979797;
	    padding-top: 19px;
	    padding-bottom: 19px;
	    background: #E8928B1A;
	    border-radius: 5px;
	    border: 1px solid #0000001A;
	    cursor: pointer;
	    display: inline-block;
	}

	/* Place back and continue side by side */
	.btn_wrap {
	    display: flex;
	    gap: 2%;
	    margin-top: 20px;
	}
	.btn_wrap .next_btn, .btn_wrap .back_btn {
	    flex: 1;
	}

	.error_field {
	    border: 1px solid red !important;
	    background: #fff6f6;
	}
	.error_message {
	    font-size: 14px;
	    color: red;
	    margin-bottom: 12px;
	    display: none;
	}
	/* Step 4 styling */
	.step4.steps {
	    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	    border-radius: 15px;
	    padding: 25px;
	    background: #fff;
	}

	/* Input field */
	#campaign_goal {
	    width: 100%;
	    padding: 14px;
	    margin-bottom: 15px;
	    border: 1px solid #0000001A;
	    border-radius: 6px;
	    font-size: 16px;
	    font-family: 'Karla';
	}

	/* Create Campaign button */
	.create_campaign_btn {
	    font-size: 20px;
	    font-family: 'Karla';
	    font-weight: 500;
	    text-align: center;
	    color: #fff;
	    padding: 18px;
	    background: #E8928B;
	    border-radius: 5px;
	    border: none;
	    cursor: pointer;
	    width: 49%;
	    transition: 0.3s ease;
	}
	.create_campaign_btn:hover {
	    background: #d66f65;
	}