#main-content-cell {
    vertical-align: middle;
}

/* Make search container responsive */
.search-container {
    background-color: #f7f7f7;
    padding: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Style the search form responsively */
#search_form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Style the search input responsively */
#search_input {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 30px;
    box-sizing: border-box;
    padding: 8px;
    font-size: 16px;
}

/* Make headings responsive */
h2 {
    font-size: 24px;
    line-height: 1.3;
    margin: 20px 0 15px;
    text-align: center;
}

/* Make intro-text content responsive */
.intro-text {
    width: 100%;
    max-width: 800px;
    margin: 25px auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5;
}

/* Search container styles */
.search-container {
    background-color: #f7f7f7;
    padding: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Intro text paragraph styles */
.intro-text p {
    margin-left: 6pt;
    text-align: center;
}

/* Welcome heading styles */
.welcome-heading {
    text-align: center;
    margin: 20px 0 15px;
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 992px) {
    h2 {
        font-size: 22px;
        margin: 18px 0 12px;
    }
    
    .intro-text {
        font-size: 15px;
        line-height: 1.45;
        margin: 20px auto;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #search_input {
        font-size: 14px;
        padding: 6px;
    }

    h2 {
        font-size: 20px;
        margin: 15px 0 10px;
    }
    
    .intro-text {
        font-size: 14px;
        line-height: 1.4;
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .search-container {
        padding: 8px;
    }

        h2 {
        font-size: 18px;
        margin: 12px 0 8px;
    }

    .intro-text {
        font-size: 14px;
        line-height: 1.35;
        padding: 0 10px;
        margin: 15px auto;
    }
}