#tutor-enquiry-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#tutor-enquiry-modal .modal-content {
    background: #fff;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    position: relative;
}
form#tutor-enquiry-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.tutors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.tutor-card {
  width: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tutor-header {
  text-align: center;
  padding: 1rem;
}
.tutor-photo img {
  width: 100%;
  height: auto;
  border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.enquire-btn {
    display: inline-block;
    margin-top: 1rem;
    background: #f90;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.tutor-details {
  padding: 0;
	display: flex;
    flex-direction: column;
    align-items: center;
}
.tutor-details h4{
	    padding: 0;
    margin: 0;
    font-size: 20px;
    line-height: 30px !important;
}
.tutor-details p{
padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 30px !important;
    font-weight: 500;
}
.tutor-inbox .thread {
  background: #f9f9f9;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.tutor-inbox textarea {
  width: 100%;
  min-height: 60px;
  margin-bottom: 10px;
}

.tutor-inbox .reply-status {
  margin-top: 10px;
  color: green;
}
.tutor-enquiry-form input,.tutor-enquiry-form textarea{
	width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

.tutor-enquiry-form button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: orange;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}