.sfg-glass-container {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 1.5rem;
    max-width: 72rem; /* Increased width of the whole bar */
    margin: 3rem auto 0 auto;
    position: relative;
    z-index: 50;
    box-sizing: border-box;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
    .sfg-glass-container {
        padding: 1.5rem;
    }
}
.sfg-toolbar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    position: relative;
    z-index: 10;
}
@media (min-width: 768px) {
    .sfg-toolbar-wrapper {
        flex-direction: row;
        align-items: stretch;
    }
}
.sfg-category-dropdown {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    z-index: 20;
}
@media (min-width: 768px) {
    .sfg-category-dropdown {
        width: 200px; /* Reduced width of dropdown */
    }
}
.sfg-text-input-wrapper {
    position: relative;
    flex-grow: 1;
    z-index: 20;
}
.sfg-glass-input {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05) !important;
    height: 4rem !important; /* Forced exact height to match button */
    line-height: 4rem !important;
    width: 100% !important;
    border-radius: 1rem !important;
    font-size: 1.125rem !important;
    color: #111827 !important;
    box-sizing: border-box !important;
    font-weight: 500 !important;
    margin: 0 !important;
}
.sfg-glass-input:focus {
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3) !important;
    outline: none !important;
}
.sfg-glass-input::placeholder {
    color: #71717A !important;
}
.sfg-submit-button {
    flex-shrink: 0;
    height: 4rem !important; /* Forced exact height */
    line-height: 1 !important;
    padding: 0 2.5rem !important;
    border-radius: 1rem !important;
    color: white !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    font-size: 1.125rem !important;
    transition: all 0.2s ease !important;
    z-index: 20 !important;
    margin: 0 !important;
}
.sfg-submit-button:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}
.sfg-submit-button:active {
    transform: scale(0.98) !important;
}
.sfg-icon-chevron {
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: #4b5563;
    width: 1.25rem;
    height: 1.25rem;
}
.sfg-icon-pen {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: #9ca3af;
    width: 1.5rem;
    height: 1.5rem;
}
