.zoho-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.zoho-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
}

/* Modal Container */
#zoho-booking-modal {
	position: fixed;
	z-index: 9999;
	left: 0; top: 0; right: 0; bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	justify-content: center;
	align-items: center;
	font-family: 'Arial', sans-serif;
}

/* Modal Content */
.zoho-modal-content {
	background: #fff;
	padding: 1.5rem;
	border-radius: 12px;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 8px 24px rgba(0,0,0,0.2);
	position: relative;
	animation: zoomIn 0.3s ease;
}

/* Animation */
@keyframes zoomIn {
	from { transform: scale(0.8); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

/* Close Button */
#zoho-modal-close {
	position: absolute;
    top: 10px;
    right: 12px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
    transition: color 0.2s ease;
    background: #ff3131;
    padding: 10px;
    border-radius: 100%;
    height: 32px;
    width: 32px;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#zoho-modal-close:hover {
	color: #333;
}

/* Form Styles */
#zoho-date-time-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1rem;
}
#zoho-date-time-form label {
	font-weight: 500;
	margin-bottom: 0.3rem;
}
#zoho-date-time-form input {
	padding: 0.5rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1rem;
	width: 100%;
}
.zoho-datetime-form-submit {
	background-color: #c8361a;
	color: #fff;
	border: none;
	padding: 0.6rem 1rem;
	border-radius: 6px;
	cursor: pointer;
	font-size: 1rem;
	transition: background-color 0.3s ease;
}
.zoho-datetime-form-submit:hover {
	background-color: #a52d16;
}

/* Loader Style */
#zoho-loader-modal {
	margin-top: 1rem;
	font-size: 1rem;
	color: #555;
}

/* Response Message */
.zoho-response-message {
	margin-top: 1rem;
	font-size: 1rem;
	font-weight: 500;
	color: #444;
	text-align: center;
}

