/* Updated Search Input for Maximum Visibility */
#youtube-search-title {
    flex: 1;
    padding: 0 25px;
    font-size: 18px; /* Larger font for better readability */
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-radius: 50px 0 0 50px;
    outline: none;
    
    /* Visibility Improvements */
    background-color: #1a1a1a; /* Darker solid background so white text pops */
    color: #ffffff !important; /* Pure white text */
    caret-color: #00d2ff; /* Neon blue typing cursor for visual feedback */
    font-weight: 500;
    
    height: 60px;
    transition: all 0.3s ease;
}

/* Ensure the text stays visible when focused */
#youtube-search-title:focus {
    background-color: #000000; /* Pitch black on focus for max contrast */
    border-color: #00d2ff;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
    color: #ffffff;
}

/* Placeholder color (the "example: ..." text) */
#youtube-search-title::placeholder {
    color: rgba(255, 255, 255, 0.5); /* Dimmer white so it doesn't distract from typing */
    font-weight: 400;
}