		.checkbox-div {
			text-align: left;
            margin-bottom: 10px;
		}
        
        /* Background Overlay */
		.bg-overlay {
		    position: fixed;
		    top: 0;
		    left: 0;
		    width: 100%;
		    height: 100%;
		    background-color: rgba(0, 0, 0, 0.2);
		    /* Dark overlay */
		    z-index: 999;
		    /* Above all other content */
		    display: none;
		    /* Hidden by default */
		}

		/* Modal Container */
		.custom-model-main {
		    position: fixed;
		    top: 50%;
		    left: 50%;
		    transform: translate(-50%, -50%);
		    width: 90%;
		    max-width: 600px;
		    /* Maximum width of the modal */
		    background: #ffffff00;
		    /* White background for the modal */
		    border-radius: 40px;
		    /* Rounded corners */
		    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
		    /* Subtle shadow */
		    z-index: 1000;
		    /* Above overlay */
		    display: none;
		    /* Hidden by default */
		}

		.custom-model-wrap {
		    display: block;
		    width: 100%;
		    position: relative;
		    background-color: rgb(0 0 0 / 85%);
		    border: 1px solid #999;
		    border: 1px solid rgba(0, 0, 0, 0.2);
		    border-radius: 65px;
		    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
		    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
		    background-clip: padding-box;
		    outline: 0;
		    text-align: left;
		    padding: 20px;
		    -webkit-box-sizing: border-box;
		    -moz-box-sizing: border-box;
		    box-sizing: border-box;
		    max-height: calc(100vh - 3px);
		    overflow-y: auto;
		}

		/* Close Button */
		.close-btn {
		    cursor: pointer;
		    font-size: 30px;
		    position: absolute;
		    right: 20px;
		    top: 10px;
		    color: #fff;
		    /* Close button color */
		    z-index: 9;
		}

		/* Form Heading */
		.custom-model-main h4 {
		    color: #fff !important;
		    /* Change this color as needed */
		    font-size: 25px !important;
		}

		.custom-model-main p {
		    color: #fff !important;
		    /* Change this color as needed */
		    font-size: 14px;
		    line-height: 1.5rem;
		}

		/* Form Error Message */
		.appointment-error {
		    color: red;
		    /* Error message color */
		    margin-bottom: 15px;
		    /* Space below error message */
		}

		/* Form Controls */
		input.form-control,
		select.form-control,
		textarea.form-control {
		    border-radius: 4px;
		    /* Rounded corners for inputs */
		    border: 1px solid #ccc;
		    /* Light grey border */
		    padding: 10px;
		    /* Padding inside inputs */
		    width: 100%;
		    /* Full width */
		    margin-bottom: 15px;
		    /* Space below inputs */
		}

		/* Button Styles */
		.custom-model-main .btn-primary {
		    background-color: #E6D2AF;
		    color: #2a1f50;
		    font-size: 20px !important;
		    cursor: pointer;
		    border-width: unset !important;
			border-color: unset !important;
			padding: 20px 40px;
			border-radius: 35px 0px 35px 0px;
		}

		.custom-model-main .checkbox-div {
		    height: 40px;
		}

		.btn-primary:hover {
		    background-color:#191970;
			color: white;
			border-width: unset !important;
			border-color: unset !important;
		    /* Darker blue on hover */
		}

		/* Checkbox Labels */
		.custom-model-main span {
		    margin-left: 10px;
		    /* Space between checkbox and label */
		    font-size: 14px;
		    color: #fff !important
		}

		.form-row {
		    --bs-gutter-x: 1.5rem;
		    --bs-gutter-y: 0;
		    display: flex;
		    flex-wrap: wrap;
		}

		.form-control {
		    display: block;
		    width: 100%;
		    height: calc(1.5em + .75rem + 2px);
		    padding: .375rem .75rem;
		    font-size: 1rem;
		    font-weight: 400;
		    line-height: 1.5;
		    color: #495057;
		    background-color: #fff;
		    background-clip: padding-box;
		    border: 1px solid #ced4da;
		    border-radius: 15px !important;
		    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
		}

		.custom-model-main .col-md-6 {
		    flex: 0 0 auto;
		    width: 49%;
		}

		.custom-model-main .col-md-12 {
		    flex: 0 0 auto;
		    width: 100%;
		}

		/* Media Queries for Responsiveness */
		@media (max-width: 750px) {
		    .custom-model-main {
		        width: 95%;
		    }

		    .custom-model-wrap {
		        max-height: calc(100vh - 100px);
		    }
		}

		@media (max-width: 550px) {
		    .custom-model-main .col-md-6 {
		        width: 100%;
		    }
		}