/* Wrapper */
.lb-search-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* THE SEARCH BOX CONTAINER
   - Fixed 50px height
   - Flexbox automatically centers children vertically
*/
.lb-search-input-group {
    position: relative;
    display: flex;
    align-items: center; /* Primary Vertical Centering */
    width: 100%;
    height: 50px; 
    background-color: #0b0b0f;
    border: 1px solid #2a2a35;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

/* The Animated Blue Line */
.lb-search-input-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #2563EB;
    transition: width 0.4s ease;
    z-index: 5;
}

.lb-search-input-group:focus-within::after {
    width: 100%;
}

/* THE ICON (FIXED)
   - Removed 'height: 100%' to stop it hitting the top edge
   - Added resets for position/margin/transform
   - Added 'align-self: center' to force it to the middle
*/
.lb-search-icon {
    align-self: center; /* Force vertical centering */
    height: auto;      /* Only as tall as the icon itself */
    line-height: 1;    /* Prevent font spacing issues */
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding-left: 15px;
    padding-right: 12px;
    
    color: #555560;
    font-size: 16px;
    flex-shrink: 0;
    
    /* Aggressive Resets to block theme interference */
    position: static !important;
    margin: 0 !important;
    top: auto !important;
    transform: none !important;
    border: none !important;
}

/* THE INPUT */
#lb-doc-search-input {
    flex-grow: 1;
    height: 100%;
    background: transparent;
    border: none;
    padding: 0 15px 0 0;
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    box-shadow: none;
}

#lb-doc-search-input::placeholder {
    color: #555560;
    opacity: 1;
}

/* Spinner */
.lb-spinner {
    display: none;
    align-self: center; /* Ensure spinner is also centered */
    margin-right: 15px;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.1);
    border-top-color: #2563EB;
    border-radius: 50%;
    animation: lb-spin 0.8s linear infinite;
    flex-shrink: 0;
}
@keyframes lb-spin { to { transform: rotate(360deg); } }

/* Dropdown Results */
.lb-search-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #15151a;
    border: 1px solid #2a2a35;
    border-radius: 8px;
    margin-top: 8px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    overflow: hidden;
}

.lb-search-list { list-style: none; margin: 0; padding: 10px; }
.lb-search-list li { margin-bottom: 5px; }
.lb-search-list li:last-child { margin-bottom: 0; }

.lb-search-list a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s;
}

.lb-search-list a:hover {
    background-color: rgba(37, 99, 235, 0.1);
}

.lb-search-title {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}

.lb-search-excerpt {
    display: block;
    color: #a0a0b0;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lb-highlight {
    color: #2563EB;
    font-weight: 700;
    background: rgba(37, 99, 235, 0.1);
}

.lb-no-results {
    padding: 15px;
    color: #a0a0b0;
    font-size: 13px;
    text-align: center;
}