body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }
		
::placeholder {
    color: #999; /* Placeholder text color */
    font-size: 16px;
}
		
/* 1. Ensure the parent containers don't clip the dropdowns */
.hero, .hero-inner, .hero-search-wrap, #tutorSearchForm {
    position: relative;
    overflow: visible !important; /* Prevents the list from being cut off */
    z-index: 10; /* Lower than the dropdowns, but higher than sections below */
}

#subject {
    font-size: 16px; /* Increase this number to make it larger */
    font-weight: 500; /* Optional: Makes the text slightly bolder and clearer */
    padding: 10px;    /* Optional: Adds space inside the box so the large text isn't cramped */
}

/* If you want the placeholder text ("Type subject name") to be larger too */
#subject::placeholder {
    font-size: 16px;
}

/* 2. Subject Options Styling */
#subjectOptions {
    list-style-type: none;
    padding: 0;
    text-align: left;
    margin: 0;
    position: absolute;
    width: auto;
    min-width: 200px;
    max-width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Stronger shadow for visibility */
    
    /* CRITICAL: Stay on top of ALL other sections */
    z-index: 9999 !important; 
    margin-left: 40px;
    
    /* SCROLLING: Keep 15 items visible but contained */
    max-height: 280px; 
    overflow-y: auto;
    display: none;
}

#city {
    font-size: 16px; /* Increase this number to make it larger */
    font-weight: 500; /* Optional: Makes the text slightly bolder and clearer */
    padding: 10px;    /* Optional: Adds space inside the box so the large text isn't cramped */
}

/* If you want the placeholder text ("Type subject name") to be larger too */
#city::placeholder {
    font-size: 16px;
}

/* 3. City Options Styling */
#cityOptions {
    list-style-type: none;
    padding: 0;
    text-align: left;
    margin: 0;
    position: absolute;
    width: auto;
    min-widtH: 200px;
    max-widtH: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;    
    overflow-y: auto;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    
    /* CRITICAL: Stay on top of ALL other sections */
    z-index: 9999 !important; 
    margin-left: 250px;
    
    /* SCROLLING: Keep 15 items visible but contained */
    max-height: 280px; 
    overflow-y: auto;
    display: none;
}

/* Common List Item Styling */
#cityOptions li, #subjectOptions li {
    padding: 10px 12px;
	font-size: 14px;
    cursor: pointer;
    color: #000;
    border-bottom: 1px solid #eee;
    background: #fff; /* Ensures text isn't transparent */
}

#cityOptions li:hover, #subjectOptions li:hover {
    background-color: #f0f0f0;
}

/* Mobile Fix: Ensure they don't overlap or go off-screen */
@media screen and (max-width: 768px) {
    #subjectOptions, #cityOptions {
        width: 100%;
        max-width: none;
        margin-left: 0;
        position: relative; /* On mobile, sometimes relative is safer if space is tight */
    }
}

.tutor-form-title {
			font-family: Arial, sans-serif;
			font-size:  20px;
			font-weight: bold;
			color: #585858;
			padding: 20px;
		}
		
		/* Media query for smartphones */
@media only screen and (max-width: 768px) {
 .tutor-form-title {
        font-size: 22px;
		font-weight: bold;
		padding: 20px;
    }
}
		
		h1  {
			font-family: Arial, sans-serif;
			font-size:  30px;
			color: #585858;
		}
		
		/* Media query for smartphones */
@media only screen and (max-width: 768px) {
    h1 {
        font-size: 24px;
    }
}

/* Media query for smartphones */
@media only screen and (max-width: 768px) {
    h2 {
        font-size: 20px;
    }
}
		

        .search-form {
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            padding: 2px 10px;
            border-radius: 4px;
            margin: 5px auto;
            max-width: 800px;
            text-align: center; /* Center text within the container */
        }

        .search-form h2 {
            margin-bottom: 20px;
			color: #585858;
        }

        .search-form label {
            display: block;
            margin-bottom: 8px;
        }
		 

        .search-form input[type="text"],
        .search-form select,
        .search-form button {
            width: 100%; /* Default to full width */
            padding: 15px;
            box-sizing: border-box;
			border: 1px solid #ccc;
			border-radius: 8px;
        }

        .search-form input[type="text"],
        .search-form select {
            margin-bottom: 10px; /* Reduced margin-bottom */
        }

        .search-form button {
            background-color: #333;
			margin-bottom: 5px;
			font-size: 18px;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .search-form button:hover {
            background-color: #45a049;
        }

        @media (min-width: 600px) {
            /* Adjust styles for screens with a minimum width of 600px */
            .search-form input[type="text"],
            .search-form select {
                width: 35%; /* Adjusted width for larger screens */
                margin-right: .2%; /* Add a small gap between input boxes */
            }

            .search-form button {
                width: 15%; /* Full width for the button on larger screens */
            }
        }