#crm-appointment-form {
    max-width: 500px;
    margin: 0 auto;
}

#crm-appointment-form select,
#crm-appointment-form input[type="date"],
#crm-appointment-form input[type="text"],
#crm-appointment-form input[type="tel"],
#crm-appointment-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#crm-appointment-form button {
    width: 100%;
    padding: 10px;
    background-color: #097e93;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#crm-appointment-form button:hover {
    background-color: #1f97b7;
}

#form-message {
    margin-top: 20px;
    text-align: center;
}

#form-message .success {
    color: green;
}

#form-message .error {
    color: #097E93;
}

#modal-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

#modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

#modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 90%;
    color:#097E93 !important;
}

#modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

#notes{
     height:150px;
}
 #mrn::placeholder {
    font-size: 12px; /* Adjust the size as needed */
  }
  
  /* Basic error styling */
    #mobile:invalid {
        border-color: red;
    }
    #error-message {
        color: #097E93;
        display: none;
    }
    /* Show error message when input is invalid */
    #mobile:invalid + #error-message {
        display: inline;
    }
	#appointment_time option.disabled-option {
		color: #999 !important;
		background-color: #f5f5f5;
	}