/*
 * Jetstream Search Stylesheet
 * Version: 5.5
 * Provides styling for the integrated search form and category/tag dropdowns.
 */

/* Flex Container */
.jss-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    padding: 5px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}
.jss-container:focus-within {
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.25);
}


/* Google Custom Search Form (Flex Item) */
.mt-site-search-form {
    flex: 1 1 70%;
    min-width: 200px;
}

.mt-site-search-form:only-child {
    flex-basis: 100%;
}

.mt-site-search-form form {
    display: flex;
    width: 100%;
    height: 100%;
}
.mt-site-search-form input[type="search"] {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    box-sizing: border-box;
    font-size: 16px;
    transition: all 0.3s;
    -webkit-appearance: none;
    background-color: transparent;
}
.mt-site-search-form input[type="search"]:focus {
    outline: none;
    background-color: #f8f9fa;
}
.mt-site-search-form button[type="submit"] {
    height: 48px;
    box-sizing: border-box;
    width: 52px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4285F4;
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-appearance: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.mt-site-search-form button[type="submit"]:hover {
    background-color: #357ae8;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(66, 133, 244, 0.3);
}

/* Category & Tag Dropdown (Flex Item) */
.wp-block-categories-dropdown,
.wp-block-tags-dropdown {
    flex: 1 1 30%;
    min-width: 120px;
}
.category-select-style,
.tag-select-style {
    width: 100%;
    height: 48px;
    padding: 0 40px 0 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M5%208l5%205%205-5z%22%20fill%3D%22%23555%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
}
.category-select-style:focus,
.tag-select-style:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
}